diff options
author | Jim Meyering <jim@meyering.net> | 2007-07-28 18:49:04 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-07-29 12:03:15 +0200 |
commit | 288524b39b2a4c4d1669b16e4a6e0cefc7ed8912 (patch) | |
tree | 800225e6c5f2e8c7c4335a9420b97a9f25887279 /NEWS | |
parent | 26468bd5a2bab9585ea622bbe05a102551663c18 (diff) | |
download | coreutils-288524b39b2a4c4d1669b16e4a6e0cefc7ed8912.tar.xz |
Attempt to copy a regular file, even if stat says it is empty.
* NEWS: Document this bug fix.
* src/copy.c (copy_reg): Read from a regular file, even if it
appears (stat.st_size == 0) to be empty. This reverts an
optimization introduced on 2005-11-23 for coreutils-6.0.
Otherwise, "cp /proc/cpuinfo /tmp" creates an empty file,
on e.g., linux-2.6.20.
* tests/cp/proc-zero-len: New file. Test for the above.
* tests/cp/Makefile.am (TESTS): Add proc-zero-len.
Reported by Dan Berrangé.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -54,6 +54,11 @@ GNU coreutils NEWS -*- outline -*- ** Bug fixes + cp attempts to read a regular file, even if stat says it is empty. + Before, "cp /proc/cpuinfo c" would create an empty file when the kernel + reports stat.st_size == 0, while "cat /proc/cpuinfo > c" would "work", + and create a nonempty one. [bug introduced in coreutils-6.0] + cp no longer fails to write through a dangling symlink [bug introduced in coreutils-6.7]. cp --parents no longer mishandles symlinks to directories in file name |