svn commit: trunk/busybox/archival

vda at busybox.net vda at busybox.net
Sat Apr 5 00:13:19 UTC 2008


Author: vda
Date: 2008-04-04 17:13:19 -0700 (Fri, 04 Apr 2008)
New Revision: 21640

Log:
cpio: typo fix in error message



Modified:
   trunk/busybox/archival/cpio.c


Changeset:
Modified: trunk/busybox/archival/cpio.c
===================================================================
--- trunk/busybox/archival/cpio.c	2008-04-05 00:07:46 UTC (rev 21639)
+++ trunk/busybox/archival/cpio.c	2008-04-05 00:13:19 UTC (rev 21640)
@@ -172,7 +172,7 @@
 				fflush(stdout);
 				/* We must abort if file got shorter too! */
 				if (bb_copyfd_size(fd, STDOUT_FILENO, st.st_size) != st.st_size) {
-					bb_error_msg_and_die("I/O error, of file '%s' was truncated", name);
+					bb_error_msg_and_die("I/O error or file '%s' was truncated", name);
 				}
 				bytes += st.st_size;
 				close(fd);




More information about the busybox-cvs mailing list