diff options
author | Jim Meyering <jim@meyering.net> | 1997-05-26 04:46:57 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-05-26 04:46:57 +0000 |
commit | 926c6c33017c942e48b35671645ae21e9b235422 (patch) | |
tree | 14726e407160c631651b7f6d95ba1fc90c000e52 /old/fileutils | |
parent | 8805ede31bceb3712adb8eafe519897112685ffa (diff) | |
download | coreutils-926c6c33017c942e48b35671645ae21e9b235422.tar.xz |
*** empty log message ***
Diffstat (limited to 'old/fileutils')
-rw-r--r-- | old/fileutils/ChangeLog | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/old/fileutils/ChangeLog b/old/fileutils/ChangeLog index 0513c14dd..51bad6906 100644 --- a/old/fileutils/ChangeLog +++ b/old/fileutils/ChangeLog @@ -1,3 +1,36 @@ +Sun May 25 09:21:01 1997 Jim Meyering <meyering@na-net.ornl.gov> + + * src/copy.c (copy_internal): When preserving symlinks + (--no-dereference) and the destination file is a symlink, + use stat (not xstat) to see if it points back to the source. + Reported by James <james@albion.glarp.com>. + + * src/du.c: Remove global variable opt_human_readable. + (enum Output_units): Rename from output_size. + Rename size_* to Unit_*. + Add Unit_variable to correspond to --human-readable. + (convert_blocks): Remove now-unused definition. + (human_readable): Rename paramater n_bytes to n_blocks. + Adjust conversions to reflect fact that input is now number of + 512-byte blocks, not bytes. + (print_size): New function. + (du_files): Use print_size instead of open coding it. + (count_entry): Always count in units of 512-byte blocks to delay. + This lets du accumulate totals corresponding to a terabyte before + overflowing 32-bit long int. + Use print_size instead of open coding it. + + Tue Feb 4 11:58:49 1997 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> + + * src/du.c (convert_blocks): Remove now-unnecessary #undef. + (du_files): Pass output_size unchanged to convert_blocks. No need + to test output_size for size_bytes, convert_blocks handles that + correctly. + (count_entry): Likewise. + + * src/system.h (convert_blocks): Remove definition. + * src/ls.c (convert_blocks): Add definition. + Sun May 25 09:11:17 1997 Jim Meyering <meyering@na-net.ornl.gov> * src/du.c [AIX]: Remove unused #pragma alloca. |