diff options
author | Jim Meyering <jim@meyering.net> | 1997-09-21 04:53:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-09-21 04:53:29 +0000 |
commit | 004c583882c6eec59a938caf4a34416d6b75b385 (patch) | |
tree | d011291c0c19b009f563ba4658f88d3aeb779597 /old/fileutils/ChangeLog | |
parent | fc802521f308a177a58f055bb5fcddb7cf077fb9 (diff) | |
download | coreutils-004c583882c6eec59a938caf4a34416d6b75b385.tar.xz |
*** empty log message ***
Diffstat (limited to 'old/fileutils/ChangeLog')
-rw-r--r-- | old/fileutils/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/old/fileutils/ChangeLog b/old/fileutils/ChangeLog index b10cea30d..547a654df 100644 --- a/old/fileutils/ChangeLog +++ b/old/fileutils/ChangeLog @@ -1,6 +1,17 @@ 1997-09-15 Jim Meyering <meyering@na-net.ornl.gov> + * src/rm.c: Use hash.c (chaining) functions, not those of oa-hash.c + (open addressing). The latter implementation is wonderful when + deletions are rare, but doen't support the frequent deletions + required to implement the active directory set. + + * lib/hash.c: New file -- replaces oa-hash.c. + * lib/hash.h: New file. + * lib/oa-hash.c: Remove. + * lib/oa-hash.h: Remove. + * src/ln.c (do_link): Perform S_ISLNK test only if lstat succeeded. + Otherwise, dest_stats could be used uninitialized. 1997-09-14 Jim Meyering <meyering@na-net.ornl.gov> |