* lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
[gnulib.git] / NEWS
1 Important notes
2 ---------------
3
4 User visible incompatible changes
5 ---------------------------------
6
7 Date        Modules         Changes
8
9 2007-03-15  list            The functions gl_list_create_empty and
10             array-list      gl_list_create now take an extra fourth argument.
11             carray-list     You can pass NULL.
12             linked-list
13             linkedhash-list
14             avltree-list
15             rbtree-list
16             avltreehash-list
17             rbtreehash-list
18
19 2007-03-15  oset            The function gl_oset_create_empty now takes a
20             array-oset      third argument. You can pass NULL.
21             avltree-oset
22             rbtree-oset
23
24 2007-03-13  vasprintf       The module now depends on stdio, so replace
25                                #include "vasprintf.h"
26                             with
27                                #include <stdio.h>
28
29 2007-03-12  des             The types and functions in lib/des.h have been
30             gc-des          renamed:
31
32                             des_ctx -> gl_des_ctx, tripledes_ctx -> gl_3des_ctx,
33                             des_is_weak_key -> gl_des_is_weak_key,
34                             des_setkey -> gl_des_setkey,
35                             des_makekey -> gl_des_makekey,
36                             des_ecb_crypt -> gl_des_ecb_crypt,
37                             des_ecb_encrypt -> gl_des_ecb_encrypt,
38                             des_ecb_decrypt -> gl_des_ecb_decrypt,
39                             tripledes_set2keys -> gl_3des_set2keys,
40                             tripledes_set3keys -> gl_3des_set3keys,
41                             tripledes_makekey -> gl_3des_makekey,
42                             tripledes_ecb_crypt -> gl_3des_ecb_crypt.
43
44                             Also consider using the "gc-des" buffer instead of
45                             using the "des" module directly.
46
47 2007-02-28  xreadlink       The module xreadlink was renamed to
48                             xreadlink-with-size. The function was renamed:
49                             xreadlink -> xreadlink_with_size.
50
51 2007-02-18  exit            The modules now depend on stdlib, so replace
52             mkdtemp           #include "exit.h"
53             mkstemp           #include "mkdtemp.h"
54                               #include "mkstemp.h"
55                             with
56                               #include <stdlib.h>
57
58 2007-01-26  strdup          The module now depends on string, so replace
59                               #include "strdup.h"
60                             with
61                               #include <string.h>
62
63 # This is for Emacs.
64 # Local Variables:
65 # indent-tabs-mode: nil
66 # whitespace-check-buffer-indent: nil
67 # End: