svn commit: trunk/busybox/coreutils

vda at busybox.net vda at busybox.net
Tue Jun 19 23:04:18 UTC 2007


Author: vda
Date: 2007-06-19 16:04:17 -0700 (Tue, 19 Jun 2007)
New Revision: 18861

Log:
echo: fix yet another buglet in non-fancy echo



Modified:
   trunk/busybox/coreutils/echo.c


Changeset:
Modified: trunk/busybox/coreutils/echo.c
===================================================================
--- trunk/busybox/coreutils/echo.c	2007-06-19 22:54:21 UTC (rev 18860)
+++ trunk/busybox/coreutils/echo.c	2007-06-19 23:04:17 UTC (rev 18861)
@@ -33,7 +33,7 @@
 		eflag = '\\',
 		nflag = 1,  /* 1 -- print '\n' */
 	};
-	arg = ++argv;
+	arg = *++argv;
 	if (!arg)
 		goto newline_ret;
 #else




More information about the busybox-cvs mailing list