diff options
author | Jim Meyering <jim@meyering.net> | 2006-08-27 16:29:11 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-08-27 16:29:11 +0000 |
commit | 0a94897cfea53424289dc32ddb8efa9728561003 (patch) | |
tree | 0886cef44f77140ce0ec7e0b4cf8bfd2aeffab58 /src | |
parent | 7f535c46a6c797a4aa2be033e56f3bf75f60592a (diff) | |
download | coreutils-0a94897cfea53424289dc32ddb8efa9728561003.tar.xz |
Two of those comments apply only when "moving" (not when copying).
Correct them.
Diffstat (limited to 'src')
-rw-r--r-- | src/copy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/copy.c b/src/copy.c index 70886b338..5b69e8ad2 100644 --- a/src/copy.c +++ b/src/copy.c @@ -1068,7 +1068,7 @@ copy_internal (char const *src_name, char const *dst_name, { if (x->move_mode && x->backup_type != no_backups) { - /* Moving/copying a directory onto an existing + /* Moving a directory onto an existing non-directory is ok only with --backup. */ } else @@ -1104,7 +1104,7 @@ copy_internal (char const *src_name, char const *dst_name, { if (x->move_mode && x->backup_type != no_backups) { - /* Moving/copying a non-directory onto an existing + /* Moving a non-directory onto an existing directory is ok only with --backup. */ } else |