From: Eric Andersen Date: Sun, 22 Feb 2004 11:46:49 +0000 (-0000) Subject: For the time being, revert the changes for detecting copying X-Git-Tag: 1_00_pre8~6 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=817565a0ffe4051cf1ba5c0ae0a779dcf0ac00cf;p=oweals%2Fbusybox.git For the time being, revert the changes for detecting copying a directory into itself. It is harder to do this correctly than it appears. Not trying at all seems a better compromise for the time being, untill we can implement this correctly. --- diff --git a/libbb/copy_file.c b/libbb/copy_file.c index 7a13e9968..7ddb9a23f 100644 --- a/libbb/copy_file.c +++ b/libbb/copy_file.c @@ -95,8 +95,6 @@ int copy_file(const char *source, const char *dest, int flags) umask(saved_umask); } - add_to_ino_dev_hashtable(&dest_stat, source); - /* Recursively copy files in SOURCE. */ if ((dp = opendir(source)) == NULL) { bb_perror_msg("unable to open directory `%s'", source); @@ -110,10 +108,6 @@ int copy_file(const char *source, const char *dest, int flags) new_source = concat_subpath_file(source, d->d_name); if(new_source == NULL) continue; - if (is_in_ino_dev_hashtable(&dest_stat, &new_source)) { - bb_error_msg("cannot copy a directory, `%s', into itself, `%s'", new_source, dest); - continue; - } new_dest = concat_path_file(dest, d->d_name); if (copy_file(new_source, new_dest, flags) < 0) status = -1;