diff options
author | Jim Meyering <jim@meyering.net> | 2000-12-28 11:52:28 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-12-28 11:52:28 +0000 |
commit | 7046dfbc473b32a2bcc4b2fe9a1f3fc7d9e99176 (patch) | |
tree | e5e4bc9b0837f5cb66d2f80ab0aa35a49e7f9358 /src | |
parent | f119221740e1782bf6d59865d404306b043f782e (diff) | |
download | coreutils-7046dfbc473b32a2bcc4b2fe9a1f3fc7d9e99176.tar.xz |
tweak comment
Diffstat (limited to 'src')
-rw-r--r-- | src/copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/copy.c b/src/copy.c index b96b7ba47..a875892ed 100644 --- a/src/copy.c +++ b/src/copy.c @@ -489,7 +489,7 @@ same_file_ok (const char *src_path, const struct stat *src_sb, return 1; /* If neither is a symlink, then it's ok as long as they aren't - links to the same file. */ + hard links to the same file. */ if (!S_ISLNK (src_sb_link->st_mode) && !S_ISLNK (dst_sb_link->st_mode)) { if (!SAME_INODE (*src_sb_link, *dst_sb_link)) |