From 0ab45da92990072a23fda0f35d068743b1067cf3 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 29 Nov 2010 03:21:55 +0100 Subject: exclude the case of just "busybox" from previous commit Signed-off-by: Denys Vlasenko --- libbb/appletlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbb/appletlib.c') diff --git a/libbb/appletlib.c b/libbb/appletlib.c index c65180c5e..efd7a5a81 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 " should still work as expected */ argv++; } -- cgit v1.2.3