Thought of another janitorial item for the list.
[oweals/busybox.git] / busybox.c
index 1409efa54f4bb8495bad716536c5b5358510d261..0250e4c108ccee77d65c0b28c4e467e617d5724b 100644 (file)
--- a/busybox.c
+++ b/busybox.c
@@ -1,10 +1,10 @@
 /* vi: set sw=4 ts=4: */
-#include "busybox.h"
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>
 #include <errno.h>
 #include <stdlib.h>
+#include "busybox.h"
 
 #undef APPLET
 #undef APPLET_NOUSAGE
@@ -87,7 +87,6 @@ static void install_links(const char *busybox, int use_symbolic_links)
 
 int main(int argc, char **argv)
 {
-       struct BB_applet *applet;
        const char *s;
 
        for (s = applet_name = argv[0]; *s != '\0';) {
@@ -103,13 +102,7 @@ int main(int argc, char **argv)
        }
 #endif
 
-       /* Do a binary search to find the applet entry given the name. */
-       if ((applet = find_applet_by_name(applet_name)) != NULL) {
-               if (applet->usage && argv[1] && strcmp(argv[1], "--help") == 0)
-                       usage(applet->usage);
-               exit((*(applet->main)) (argc, argv));
-       }
-
+       run_applet_by_name(applet_name, argc, argv);
        error_msg_and_die("applet not found");
 }
 
@@ -173,7 +166,7 @@ int busybox_main(int argc, char **argv)
                        }
                }
                fprintf(stderr, "\n\n");
-               exit(-1);
+               exit(0);
        }
 
        /* Flag that we've been here already */