summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-12-28 11:31:44 +0000
committerJim Meyering <jim@meyering.net>2000-12-28 11:31:44 +0000
commitf119221740e1782bf6d59865d404306b043f782e (patch)
treef6882fd98044e0dac87c77d4819e52197fc3254a /src
parentfe38ed9d903fee8565f09a0a0403ff857acc1c36 (diff)
downloadcoreutils-f119221740e1782bf6d59865d404306b043f782e.tar.xz
tweak comment
Diffstat (limited to 'src')
-rw-r--r--src/copy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/copy.c b/src/copy.c
index c8c7a50b8..b96b7ba47 100644
--- a/src/copy.c
+++ b/src/copy.c
@@ -504,8 +504,8 @@ same_file_ok (const char *src_path, const struct stat *src_sb,
}
/* It's ok to remove a destination symlink. But that works only when we
- unlink before opening the destination and when they're on the same
- partition. */
+ unlink before opening the destination and when the source and destination
+ files are on the same partition. */
if (x->unlink_dest_before_opening
&& S_ISLNK (dst_sb_link->st_mode))
return dst_sb_link->st_dev == src_sb_link->st_dev;