Move applet_name declaration from busybox.h to libbb.h.

This commit is contained in:
Matt Kraai
2001-04-24 01:12:33 +00:00
parent af030496fa
commit 9ff9325e60
7 changed files with 5 additions and 9 deletions

View File

@@ -126,7 +126,7 @@ int copy_file(const char *source, const char *dest, int flags)
if (dest_exists) {
if (flags & CP_INTERACTIVE) {
fprintf(stderr, "cp: overwrite `%s'? ", dest);
fprintf(stderr, "%s: overwrite `%s'? ", applet_name, dest);
if (!ask_confirmation())
return 0;
}