aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-06-19 23:04:17 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-06-19 23:04:17 +0000
commitbb98db2ed2140db5fd5c08112e257ed864aec646 (patch)
treecc25f307fa7c9433424ec567fbac640ef3e83801
parent5ad1048c3d139a11df61392b82d76221ef1576f2 (diff)
downloadbusybox-w32-bb98db2ed2140db5fd5c08112e257ed864aec646.tar.gz
busybox-w32-bb98db2ed2140db5fd5c08112e257ed864aec646.tar.bz2
busybox-w32-bb98db2ed2140db5fd5c08112e257ed864aec646.zip
echo: fix yet another buglet in non-fancy echo
-rw-r--r--coreutils/echo.c2
1 files changed, 1 insertions, 1 deletions
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)
33 eflag = '\\', 33 eflag = '\\',
34 nflag = 1, /* 1 -- print '\n' */ 34 nflag = 1, /* 1 -- print '\n' */
35 }; 35 };
36 arg = ++argv; 36 arg = *++argv;
37 if (!arg) 37 if (!arg)
38 goto newline_ret; 38 goto newline_ret;
39#else 39#else