aboutsummaryrefslogtreecommitdiff
path: root/cp_mv.c
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-11 16:23:35 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-11 16:23:35 +0000
commit72c0e1ee41ad693a5ff11137579eb7c2a39f4e22 (patch)
treeb292a499341d3c0314283e2822a93241a1c4e1dd /cp_mv.c
parentb4a1bdf087dcc1938cb93e5292512b7aa71fb569 (diff)
downloadbusybox-w32-72c0e1ee41ad693a5ff11137579eb7c2a39f4e22.tar.gz
busybox-w32-72c0e1ee41ad693a5ff11137579eb7c2a39f4e22.tar.bz2
busybox-w32-72c0e1ee41ad693a5ff11137579eb7c2a39f4e22.zip
copy_file_chunk uses streams now.
git-svn-id: svn://busybox.net/trunk/busybox@2315 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'cp_mv.c')
-rw-r--r--cp_mv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cp_mv.c b/cp_mv.c
index f4b5cd0d6..3c19f1a04 100644
--- a/cp_mv.c
+++ b/cp_mv.c
@@ -147,7 +147,7 @@ cp_mv_Action(const char *fileName, struct stat *statbuf, void* junk)
147 add_to_ino_dev_hashtable(statbuf, destName); 147 add_to_ino_dev_hashtable(statbuf, destName);
148 } 148 }
149 } 149 }
150 return copy_file(fileName, destName, preserveFlag, followLinks, forceFlag); 150 return copy_file(fileName, destName, preserveFlag, followLinks, forceFlag, FALSE);
151} 151}
152 152
153static int 153static int