[BusyBox-cvs] svn commit: trunk/busybox/libbb

pgf at busybox.net pgf at busybox.net
Tue Jul 19 21:31:05 UTC 2005


Author: pgf
Date: 2005-07-19 15:31:05 -0600 (Tue, 19 Jul 2005)
New Revision: 10867

Log:
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.


Modified:
   trunk/busybox/libbb/copy_file.c


Changeset:
Modified: trunk/busybox/libbb/copy_file.c
===================================================================
--- trunk/busybox/libbb/copy_file.c	2005-07-19 21:26:57 UTC (rev 10866)
+++ trunk/busybox/libbb/copy_file.c	2005-07-19 21:31:05 UTC (rev 10867)
@@ -147,7 +147,7 @@
 
 		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;




More information about the busybox-cvs mailing list