diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-14 21:23:06 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-14 21:23:06 +0000 |
commit | 67991cf824f8df27e74c92d754fb507681c69ce6 (patch) | |
tree | a0b652f3dc794d1050c1a8de3afb014a621238fa /busybox.c | |
parent | 68be2ab914e1e20fe666bbd22a89a18714be2789 (diff) | |
download | busybox-w32-67991cf824f8df27e74c92d754fb507681c69ce6.tar.gz busybox-w32-67991cf824f8df27e74c92d754fb507681c69ce6.tar.bz2 busybox-w32-67991cf824f8df27e74c92d754fb507681c69ce6.zip |
This patch, put together by Manuel Novoa III, is a merge of work
done by Evin Robertson (bug#1105) and work from Manuel to make
usage messages occupy less space and simplify how usage messages
are displayed.
Diffstat (limited to 'busybox.c')
-rw-r--r-- | busybox.c | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -87,7 +87,6 @@ static void install_links(const char *busybox, int use_symbolic_links) | |||
87 | 87 | ||
88 | int main(int argc, char **argv) | 88 | int main(int argc, char **argv) |
89 | { | 89 | { |
90 | struct BB_applet *applet; | ||
91 | const char *s; | 90 | const char *s; |
92 | 91 | ||
93 | for (s = applet_name = argv[0]; *s != '\0';) { | 92 | for (s = applet_name = argv[0]; *s != '\0';) { |
@@ -103,13 +102,7 @@ int main(int argc, char **argv) | |||
103 | } | 102 | } |
104 | #endif | 103 | #endif |
105 | 104 | ||
106 | /* Do a binary search to find the applet entry given the name. */ | 105 | run_applet_by_name(applet_name, argc, argv); |
107 | if ((applet = find_applet_by_name(applet_name)) != NULL) { | ||
108 | if (applet->usage && argv[1] && strcmp(argv[1], "--help") == 0) | ||
109 | usage(applet->usage); | ||
110 | exit((*(applet->main)) (argc, argv)); | ||
111 | } | ||
112 | |||
113 | error_msg_and_die("applet not found"); | 106 | error_msg_and_die("applet not found"); |
114 | } | 107 | } |
115 | 108 | ||