X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=main.c;h=6025d43fe2b3b97fb6d0b3cc071aae14cb37c429;hb=bf4741d56c55172ffbeffdf21b8d2e5ff5916991;hp=31e51b17e608f2e4f0f47f7123c53e9bca5d9635;hpb=ec0b482e9fd27cb994b30e0f1b8a4d39a85735cc;p=android-x86%2Fexternal-toybox.git diff --git a/main.c b/main.c index 31e51b17..6025d43f 100644 --- a/main.c +++ b/main.c @@ -6,7 +6,7 @@ #include "toys.h" #ifndef TOYBOX_VERSION -#define TOYBOX_VERSION "0.7.1" +#define TOYBOX_VERSION "0.7.4" #endif // Populate toy_list[]. @@ -49,7 +49,7 @@ struct toy_list *toy_find(char *name) if (middletop) return NULL; result = strcmp(name,toy_list[middle].name); if (!result) return toy_list+middle; - if (result<0) top=--middle; + if (result<0) top = --middle; else bottom = ++middle; } } @@ -67,6 +67,13 @@ static const int NEED_OPTIONS = #include "generated/newtoys.h" 0; // Ends the opts || opts || opts... +static void unknown(char *name) +{ + toys.exitval = 127; + toys.which = toy_list; + error_exit("Unknown command %s", name); +} + // Setup toybox global state for this command. static void toy_singleinit(struct toy_list *which, char *argv[]) { @@ -75,11 +82,19 @@ static void toy_singleinit(struct toy_list *which, char *argv[]) if (CFG_TOYBOX_I18N) setlocale(LC_ALL, "C"+!!(which->flags & TOYFLAG_LOCALE)); - if (CFG_TOYBOX_HELP_DASHDASH && argv[1] && !strcmp(argv[1], "--help")) { - if (CFG_TOYBOX && toys.which == toy_list && toys.argv[2]) - if (!(toys.which = toy_find(toys.argv[2]))) return; - show_help(stdout); - xexit(); + // Parse --help and --version for (almost) all commands + if (CFG_TOYBOX_HELP_DASHDASH && !(which->flags & TOYFLAG_NOHELP) && argv[1]) { + if (!strcmp(argv[1], "--help")) { + if (CFG_TOYBOX && toys.which == toy_list && toys.argv[2]) + if (!(toys.which = toy_find(toys.argv[2]))) unknown(toys.argv[2]); + show_help(stdout); + xexit(); + } + + if (!strcmp(argv[1], "--version")) { + xputs("toybox "TOYBOX_VERSION); + xexit(); + } } if (NEED_OPTIONS && which->options) get_optflags(); @@ -166,16 +181,7 @@ void toybox_main(void) // For early error reporting toys.which = toy_list; - if (toys.argv[1]) { - if (!strcmp("--version", toys.argv[1])) { - xputs(TOYBOX_VERSION); - xexit(); - } - if (toys.argv[1][0] != '-') { - toys.exitval = 127; - error_exit("Unknown command %s", toys.argv[1]); - } - } + if (toys.argv[1] && toys.argv[1][0] != '-') unknown(toys.argv[1]); // Output list of command. for (i=1; i