projects
/
platform
/
upstream
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
146e83a
)
applying fix for:
author
Paul Fox
<pgf@brightstareng.com>
Tue, 19 Jul 2005 21:31:05 +0000
(21:31 -0000)
committer
Paul Fox
<pgf@brightstareng.com>
Tue, 19 Jul 2005 21:31:05 +0000
(21:31 -0000)
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.
libbb/copy_file.c
patch
|
blob
|
history
diff --git
a/libbb/copy_file.c
b/libbb/copy_file.c
index
e1b98ed
..
cd6d380
100644
(file)
--- 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;