Fixed 'ls -s' so it actually displays block sizes again.
[oweals/busybox.git] / busybox.c
index e56d2a4ed805e9b2112e559ddcfd9cf268d9608b..6c1070fc866b936d47342de81cae6417e8806bbc 100644 (file)
--- a/busybox.c
+++ b/busybox.c
@@ -87,8 +87,7 @@ static void install_links(const char *busybox, int use_symbolic_links)
 
 int main(int argc, char **argv)
 {
-       struct BB_applet search_applet, *applet;
-       const char                              *s;
+       const char *s;
 
        for (s = applet_name = argv[0]; *s != '\0';) {
                if (*s++ == '/')
@@ -103,17 +102,8 @@ int main(int argc, char **argv)
        }
 #endif
 
-       /* Do a binary search to find the applet entry given the name. */
-       search_applet.name = applet_name;
-       applet = bsearch(&search_applet, applets, NUM_APPLETS,
-                       sizeof(struct BB_applet), applet_name_compare);
-       if (applet != NULL) {
-               if (applet->usage && argv[1] && strcmp(argv[1], "--help") == 0)
-                       usage(applet->usage); 
-               exit((*(applet->main)) (argc, argv));
-       }
-
-       error_msg_and_die("applet not found\n");
+       run_applet_by_name(applet_name, argc, argv);
+       error_msg_and_die("applet not found");
 }