diff options
author | Jim Meyering <jim@meyering.net> | 2006-08-27 16:20:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-08-27 16:20:52 +0000 |
commit | 7f535c46a6c797a4aa2be033e56f3bf75f60592a (patch) | |
tree | 28fd503760b2e2b526b7f7dc2bd6cfba7f28f80d /src | |
parent | ddf6238830eb6a409ad928724b53fdd4ea2b0a43 (diff) | |
download | coreutils-7f535c46a6c797a4aa2be033e56f3bf75f60592a.tar.xz |
* src/copy.c (copy_internal): Add comments.
Diffstat (limited to 'src')
-rw-r--r-- | src/copy.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/copy.c b/src/copy.c index 9ca2ae9df..70886b338 100644 --- a/src/copy.c +++ b/src/copy.c @@ -1033,7 +1033,8 @@ copy_internal (char const *src_name, char const *dst_name, } } else - { + { /* Here, we know that dst_name exists, at least to the point + that it is XSTAT'able. */ bool return_now; bool unlink_src; bool ok = same_file_ok (src_name, &src_sb, dst_name, &dst_sb, @@ -1067,6 +1068,8 @@ 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 + non-directory is ok only with --backup. */ } else { @@ -1101,6 +1104,8 @@ 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 + directory is ok only with --backup. */ } else { |