aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;