]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
tweak comment
authorJim Meyering <jim@meyering.net>
Thu, 28 Dec 2000 11:52:28 +0000 (11:52 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 28 Dec 2000 11:52:28 +0000 (11:52 +0000)
src/copy.c

index b96b7ba479bbd1de8e77f22d7cc8d3d7b6412f3e..a875892ed3622fde3f997521be7dca20de44e8cd 100644 (file)
@@ -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))