diff options
author | Jim Meyering <jim@meyering.net> | 2004-07-07 15:54:54 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-07-07 15:54:54 +0000 |
commit | 2aa1f2d16babc2b2b468fa503b757adf8e87336c (patch) | |
tree | 4b950909081775b3f41cddac8c30d017b317fe98 | |
parent | f1314a409c320ca57947e8a624ce857e12051c62 (diff) | |
download | coreutils-2aa1f2d16babc2b2b468fa503b757adf8e87336c.tar.xz |
*** empty log message ***
-rw-r--r-- | lib/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index b3f13044e..280ccbfcd 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,5 +1,16 @@ 2004-07-07 Jim Meyering <jim@meyering.net> + Don't infloop when MAXSYMLINKS is not defined. + Detect symlink loops much earlier (albeit lazily) on systems + with MAXSYMLINKS defined to a large value. + + * canonicalize.c: Include "cycle-check.h". + (canonicalize_filename_mode): Don't try to detect loops by counting + symlink-hops. Instead, use the cycle-check module. + + * cycle-check.h: Include stdbool.h. + Forward-declare `struct stat'. + * canonicalize.c (canonicalize_filename_mode): Remove do-while(0) loop. Replace each corresponding `break' stmt with `continue'. |