exit with 127 if appled name wasn't found - it's more POSIXy
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 17 Nov 2014 16:03:47 +0000 (17:03 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 17 Nov 2014 16:03:47 +0000 (17:03 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/appletlib.c

index cb16e310f152906872e7f55c763f6344a781d09b..54300bd8726a9b4ac7205c80343ed4d94ef47660 100644 (file)
@@ -733,7 +733,8 @@ static int busybox_main(char **argv)
        /*bb_error_msg_and_die("applet not found"); - sucks in printf */
        full_write2_str(applet_name);
        full_write2_str(": applet not found\n");
-       xfunc_die();
+       /* POSIX: "If a command is not found, the exit status shall be 127" */
+       exit(127);
 }
 
 void FAST_FUNC run_applet_no_and_exit(int applet_no, char **argv)
@@ -838,6 +839,7 @@ int main(int argc UNUSED_PARAM, char **argv)
        /*bb_error_msg_and_die("applet not found"); - sucks in printf */
        full_write2_str(applet_name);
        full_write2_str(": applet not found\n");
-       xfunc_die();
+       /* POSIX: "If a command is not found, the exit status shall be 127" */
+       exit(127);
 #endif
 }