diff options
author | Bernhard Reutner-Fischer | 2007-06-06 17:49:03 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2007-06-06 17:49:03 +0000 |
commit | 8a37a2a352d9a814e7d399b61bebb158cd34539f (patch) | |
tree | 8dc7a17e1cce792f490f5723d1f0013c3ab7ab1c /coreutils | |
parent | 9cb801884ac3c84c4be8995418d2435602ac36df (diff) | |
download | busybox-8a37a2a352d9a814e7d399b61bebb158cd34539f.zip busybox-8a37a2a352d9a814e7d399b61bebb158cd34539f.tar.gz |
- fix non-fancy echo by pulling r18752 from trunk.
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/echo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/echo.c b/coreutils/echo.c index 9aad2c2..e1eea00 100644 --- a/coreutils/echo.c +++ b/coreutils/echo.c @@ -33,7 +33,7 @@ int bb_echo(char **argv) eflag = '\\', nflag = 1, /* 1 -- print '\n' */ }; - ++argv; + arg = *++argv; #else const char *p; char nflag = 1; |