diff options
author | Matt Kraai <kraai@debian.org> | 2001-04-24 01:12:33 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-04-24 01:12:33 +0000 |
commit | 9ff9325e60eac6cc119eab5dff0dbbba78edfd32 (patch) | |
tree | b298111f4ce0cbb7998dabb279d61247eb4eac19 /libbb/copy_file.c | |
parent | af030496fae5c4ad24770be8a850b244286ba608 (diff) | |
download | busybox-w32-9ff9325e60eac6cc119eab5dff0dbbba78edfd32.tar.gz busybox-w32-9ff9325e60eac6cc119eab5dff0dbbba78edfd32.tar.bz2 busybox-w32-9ff9325e60eac6cc119eab5dff0dbbba78edfd32.zip |
Move applet_name declaration from busybox.h to libbb.h.
Diffstat (limited to 'libbb/copy_file.c')
-rw-r--r-- | libbb/copy_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/copy_file.c b/libbb/copy_file.c index 113c253b9..f24d1b119 100644 --- a/libbb/copy_file.c +++ b/libbb/copy_file.c | |||
@@ -126,7 +126,7 @@ int copy_file(const char *source, const char *dest, int flags) | |||
126 | 126 | ||
127 | if (dest_exists) { | 127 | if (dest_exists) { |
128 | if (flags & CP_INTERACTIVE) { | 128 | if (flags & CP_INTERACTIVE) { |
129 | fprintf(stderr, "cp: overwrite `%s'? ", dest); | 129 | fprintf(stderr, "%s: overwrite `%s'? ", applet_name, dest); |
130 | if (!ask_confirmation()) | 130 | if (!ask_confirmation()) |
131 | return 0; | 131 | return 0; |
132 | } | 132 | } |