aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorpgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-07-19 21:31:05 +0000
committerpgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-07-19 21:31:05 +0000
commit2ddab789c65afa40f7c8f9c3cb58118a5fc91b44 (patch)
tree7c19a36ff7a8c0d285f31b5fdd89971f279e005b /libbb
parentaa7a3a5d7455beebba8185fe27f8408b85372f07 (diff)
downloadbusybox-w32-2ddab789c65afa40f7c8f9c3cb58118a5fc91b44.tar.gz
busybox-w32-2ddab789c65afa40f7c8f9c3cb58118a5fc91b44.tar.bz2
busybox-w32-2ddab789c65afa40f7c8f9c3cb58118a5fc91b44.zip
applying fix for:
0000117: Remove linefeed after overwrite prompt using cp -i User input not on the same line as the prompt when about to overwrite a file. git-svn-id: svn://busybox.net/trunk/busybox@10867 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/copy_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/copy_file.c b/libbb/copy_file.c
index e1b98ed4c..cd6d38022 100644
--- a/libbb/copy_file.c
+++ b/libbb/copy_file.c
@@ -147,7 +147,7 @@ int copy_file(const char *source, const char *dest, int flags)
147 147
148 if (dest_exists) { 148 if (dest_exists) {
149 if (flags & FILEUTILS_INTERACTIVE) { 149 if (flags & FILEUTILS_INTERACTIVE) {
150 bb_error_msg("overwrite `%s'? ", dest); 150 fprintf(stderr, "%s: overwrite `%s'? ", bb_applet_name, dest);
151 if (!bb_ask_confirmation()) { 151 if (!bb_ask_confirmation()) {
152 close (src_fd); 152 close (src_fd);
153 return 0; 153 return 0;