diff options
author | Jim Meyering <jim@meyering.net> | 2007-06-10 14:56:39 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-06-10 15:01:18 +0200 |
commit | b1b0f5c556f5b4080bf16525c309264de73084b7 (patch) | |
tree | de1c561b0b228d0495a310358844ae6b87133599 /ChangeLog | |
parent | 6c95b3f2bf3edfa913a76f83da0c329f1bf0e1ea (diff) | |
download | coreutils-b1b0f5c556f5b4080bf16525c309264de73084b7.tar.xz |
bug-fix: cp would fail to write through a dangling symlink
* NEWS: Mention the bug fix.
* src/copy.c (copy_reg): When open fails with EEXIST, the destination
is lstat'able, and a symlink, call open again, but now without O_EXCL.
* tests/cp/thru-dangling: New file, to test for the above fix.
* tests/cp/Makefile.am (TESTS): Add thru-dangling.
* THANKS: Add Michael McLagan.
Bug report from Michael McLagan in <http://bugzilla.redhat.com/243588>.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,14 @@ +2007-06-10 Jim Meyering <jim@meyering.net> + + bug-fix: cp would fail to write through a dangling symlink + * NEWS: Mention the bug fix. + * src/copy.c (copy_reg): When open fails with EEXIST, the destination + is lstat'able, and a symlink, call open again, but now without O_EXCL. + * tests/cp/thru-dangling: New file, to test for the above fix. + * tests/cp/Makefile.am (TESTS): Add thru-dangling. + * THANKS: Add Michael McLagan. + Bug report from Michael McLagan in <http://bugzilla.redhat.com/243588>. + 2007-06-04 Paul Eggert <eggert@cs.ucla.edu> * doc/coreutils.texi (Common options): Mention that -h and |