fix printf warning
[oweals/busybox.git] / libbb / copy_file.c
index 637b8179b04a18835c700395c256b2fe7b8275e0..0120d0b16b988068c40c1abccc7c1909a5369a4d 100644 (file)
@@ -54,10 +54,11 @@ int copy_file(const char *source, const char *dest, int flags)
                }
        } else {
                if (source_stat.st_dev == dest_stat.st_dev &&
-                       source_stat.st_ino == dest_stat.st_ino) {
-               bb_error_msg("`%s' and `%s' are the same file", source, dest);
-               return -1;
-       }
+                       source_stat.st_ino == dest_stat.st_ino)
+               {
+                       bb_error_msg("`%s' and `%s' are the same file", source, dest);
+                       return -1;
+               }
                dest_exists = 1;
        }
 
@@ -65,28 +66,12 @@ int copy_file(const char *source, const char *dest, int flags)
                DIR *dp;
                struct dirent *d;
                mode_t saved_umask = 0;
-               char *dstparent;
-               struct stat dstparent_stat;
 
                if (!(flags & FILEUTILS_RECUR)) {
                        bb_error_msg("%s: omitting directory", source);
                        return -1;
                }
 
-               dstparent = dirname(bb_xstrdup(dest));
-               if (lstat(dstparent, &dstparent_stat) < 0) {
-                       bb_perror_msg("unable to stat `%s'", dstparent);
-                       free(dstparent);
-                       return -1;
-               }
-               free(dstparent);
-
-               if (source_stat.st_dev == dstparent_stat.st_dev &&
-                       source_stat.st_ino == dstparent_stat.st_ino) {
-                       bb_error_msg("cannot copy a directory, `%s', into itself, `%s'", source, dest);
-                       return -1;
-               }
-
                /* Create DEST.  */
                if (dest_exists) {
                        if (!S_ISDIR(dest_stat.st_mode)) {
@@ -258,7 +243,9 @@ int copy_file(const char *source, const char *dest, int flags)
        }
 
 #ifdef CONFIG_FEATURE_PRESERVE_HARDLINKS
-       add_to_ino_dev_hashtable(&source_stat, dest);
+       if (! S_ISDIR(source_stat.st_mode)) {
+               add_to_ino_dev_hashtable(&source_stat, dest);
+       }
 #endif
 
 end: