diff options
author | Paul Fox <pgf@brightstareng.com> | 2005-07-19 21:31:05 +0000 |
---|---|---|
committer | Paul Fox <pgf@brightstareng.com> | 2005-07-19 21:31:05 +0000 |
commit | c337d29550162e4130fe74a1f2c7118da3110343 (patch) | |
tree | 7c19a36ff7a8c0d285f31b5fdd89971f279e005b /libbb/copy_file.c | |
parent | 146e83a60e802aa2aaa91ff5a60b00f51ee53515 (diff) |
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.
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 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) 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; |