summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-02-21 10:23:21 +0000
committerJim Meyering <jim@meyering.net>2003-02-21 10:23:21 +0000
commit1771d1a11dc6b2ada3562bffad8fe9f514b44a3d (patch)
tree56175c6df0207dfa77fc99bb91bce3935bb9847e /ChangeLog
parent7f51568be54ee7a0e4818f7fa2696190a38dc749 (diff)
downloadcoreutils-1771d1a11dc6b2ada3562bffad8fe9f514b44a3d.tar.xz
*** empty log message ***
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d2ba3c683..fd0cde592 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,21 @@
* Version 4.5.8.
+ * src/du.c: New option: --apparent-size.
+ (enum) [APPARENT_SIZE_OPTION]: New member.
+ (long_options): Add it.
+ (usage): Describe it.
+ (main): Handle it.
+ ['b']: Set apparent_size.
+ David Eisner reported that the behavior of --bytes had changed.
+ Paul Eggert proposed the use of a new option, --apparent-size.
+
+ * src/du.c (apparent_size): New global.
+ (print_only_size): Reflect the fact that we're printing byte counts,
+ not ST_NBLOCKSIZE-byte-block counts.
+ (print_size): Call print_only_size rather than duplicating its code.
+ (process_file): Accumulate byte counts, rather than block counts.
+
* src/du.c (process_file): Always reset size_to_propagate_to_parent
for --separate-dirs (-S).