From: Denis Vlasenko Date: Tue, 19 Jun 2007 23:04:17 +0000 (-0000) Subject: echo: fix yet another buglet in non-fancy echo X-Git-Tag: 1_7_0~201 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bb98db2ed2140db5fd5c08112e257ed864aec646;p=oweals%2Fbusybox.git echo: fix yet another buglet in non-fancy echo --- diff --git a/coreutils/echo.c b/coreutils/echo.c index 11507b438..085e8516c 100644 --- a/coreutils/echo.c +++ b/coreutils/echo.c @@ -33,7 +33,7 @@ int bb_echo(char **argv) eflag = '\\', nflag = 1, /* 1 -- print '\n' */ }; - arg = ++argv; + arg = *++argv; if (!arg) goto newline_ret; #else