diff options
-rw-r--r-- | applets/busybox.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index a49565008..833e8d372 100644 --- a/applets/busybox.c +++ b/applets/busybox.c | |||
@@ -110,8 +110,9 @@ int busybox_main(int argc, char **argv) | |||
110 | /* Deal with --help. (Also print help when called with no arguments) */ | 110 | /* Deal with --help. (Also print help when called with no arguments) */ |
111 | 111 | ||
112 | if (argc==1 || !strcmp(argv[1],"--help") ) { | 112 | if (argc==1 || !strcmp(argv[1],"--help") ) { |
113 | if (argc>2) run_applet_by_name(bb_applet_name=argv[2], argc, argv); | 113 | if (argc>2) { |
114 | else { | 114 | run_applet_by_name(bb_applet_name=argv[2], 2, argv); |
115 | } else { | ||
115 | const struct BB_applet *a; | 116 | const struct BB_applet *a; |
116 | int col, output_width; | 117 | int col, output_width; |
117 | 118 | ||