From: Denis Vlasenko Date: Mon, 9 Apr 2007 03:29:43 +0000 (-0000) Subject: busybox: fix ": applet not found" message X-Git-Tag: 1_6_0~211 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2dfdd44d9d6c3984501683bbac2e78b18eeae1e7;p=oweals%2Fbusybox.git busybox: fix ": applet not found" message --- diff --git a/applets/applets.c b/applets/applets.c index c8e85cdb1..db4ee482e 100644 --- a/applets/applets.c +++ b/applets/applets.c @@ -591,7 +591,11 @@ static int busybox_main(int argc, char **argv) puts("\n"); return 0; } - } else run_applet_by_name(argv[1], argc - 1, argv + 1); + } else { + /* we want ": applet not found", not "busybox: ..." */ + applet_name = argv[1]; + run_applet_by_name(argv[1], argc - 1, argv + 1); + } bb_error_msg_and_die("applet not found"); }