comparison lib/ChangeLog @ 3082:3e4fdf9dcb54

*** empty log message ***
author Jim Meyering <jim@meyering.net>
date Fri, 29 Dec 2000 10:32:33 +0000
parents e086f34d8587
children 4e021a920141
comparison
equal deleted inserted replaced
3081:b7402f1afb7b 3082:3e4fdf9dcb54
1 2000-12-29 Paul Eggert <eggert@twinsun.com>
2
3 * lib/modechange.c: Do not assume that mode_t uses the
4 traditional octal encoding. E.g. "chmod 1 FOO" should set
5 the other-execute bit of FOO even if S_IXOTH != 1.
6
7 (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
8 WOTH, XOTH, ALLM): New macros.
9 (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
10 S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
11 Use them.
12 (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
13 (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
14 (mode_compile):
15 No need to use uintmax_t; unsigned long is long enough.
16 Don't bother to get suffix since we don't use it.
17
1 2000-12-24 Jim Meyering <meyering@lucent.com> 18 2000-12-24 Jim Meyering <meyering@lucent.com>
2 19
3 * hash.c (is_prime): Return explicit boolean values. 20 * hash.c (is_prime): Return explicit boolean values.
4 (hash_get_first): Return NULL to appease Irix5.6's 89. 21 (hash_get_first): Return NULL to appease Irix5.6's 89.
5 Reported by Nelson Beebe. 22 Reported by Nelson Beebe.