summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-01-15 11:58:26 +0000
committerJim Meyering <jim@meyering.net>2003-01-15 11:58:26 +0000
commitb1ebf2a3838cb7c673a641884fd4a64833d99258 (patch)
tree62156f21d86ae7b37ee4ca13b7d2f6cb53281c6f /ChangeLog
parentb6dcca866227295b1976df6b6fbf8b3da48effcb (diff)
downloadcoreutils-b1ebf2a3838cb7c673a641884fd4a64833d99258.tar.xz
*** empty log message ***
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f30e7eb0c..9c0efd897 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,18 @@
* Version 4.5.5.
+ * src/ls.c (gobble_file): Fall back on using lstat when required:
+ when --dereference (-L) is not specified, and
+ - when operating on a dangling symlink
+ - when operating on command-line-symlink-to-directories
+ This fixes numerous problems. Here are examples:
+ - `ls dangling-symlink' would fail with `no such file...'
+ Now it prints `dangling-symlink'.
+ - `ls -i symlink' would mistakenly print the inode of the referent.
+ Now it prints the inode of the symlink. Likewise for --size (-s).
+ Based on a patch from Michael Stone.
+ Reported by Deepak Goel as Debian bug #173793.
+
Rename ls's --dereference-command-line (-H)
option to --dereference-command-line-symlink-to-dir.
* src/ls.c [enum Dereference_symlink]