diff options
author | Denys Vlasenko | 2010-11-29 03:21:55 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-11-29 03:21:55 +0100 |
commit | 0ab45da92990072a23fda0f35d068743b1067cf3 (patch) | |
tree | e9d913a76eb57afe4c06dc2add065e80e80b1768 | |
parent | 8f0af3b0013156b8aa3bae802af5e33c3a440915 (diff) | |
download | busybox-0ab45da92990072a23fda0f35d068743b1067cf3.zip busybox-0ab45da92990072a23fda0f35d068743b1067cf3.tar.gz |
exclude the case of just "busybox" from previous commit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/appletlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index c65180c..efd7a5a 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -812,7 +812,7 @@ int main(int argc UNUSED_PARAM, char **argv) #if defined(SINGLE_APPLET_MAIN) /* Only one applet is selected in .config */ - if (strncmp(argv[0], "busybox", 7) == 0) { + if (argv[1] && strncmp(argv[0], "busybox", 7) == 0) { /* "busybox <applet> <params>" should still work as expected */ argv++; } |