- add a few basic tests for pidof(8)
[oweals/busybox.git] / libbb / copy_file.c
index e1b98ed4ca210cd9bbe24b2601c4c0a489479930..cd6d3802294baafa11ad37dd4d3072265fd889c6 100644 (file)
@@ -147,7 +147,7 @@ int copy_file(const char *source, const char *dest, int flags)
 
                if (dest_exists) {
                        if (flags & FILEUTILS_INTERACTIVE) {
-                               bb_error_msg("overwrite `%s'? ", dest);
+                               fprintf(stderr, "%s: overwrite `%s'? ", bb_applet_name, dest);
                                if (!bb_ask_confirmation()) {
                                        close (src_fd);
                                        return 0;