From: Mark Whitley Date: Thu, 20 Jul 2000 23:08:40 +0000 (-0000) Subject: As per a discussion on the mailing list between Matt and Pavel. I have removed X-Git-Tag: 0_47~212 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1f45b268cb5b0b11557f562ee5a5f54d60ac72aa;p=oweals%2Fbusybox.git As per a discussion on the mailing list between Matt and Pavel. I have removed the -V (version) flag from busybox sed. It is unnecessary because sed is not a standalone and should therefore be independently reporting a version number. Moreover, it is extra code that we just don't need. --- diff --git a/editors/sed.c b/editors/sed.c index 7b3a4236a..b54a9bb9c 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -672,12 +672,8 @@ extern int sed_main(int argc, char **argv) #endif /* do normal option parsing */ - while ((opt = getopt(argc, argv, "Vhne:f:")) > 0) { + while ((opt = getopt(argc, argv, "hne:f:")) > 0) { switch (opt) { - case 'V': - printf("%s\n", full_version); - exit(0); - break; case 'h': usage(sed_usage); break; diff --git a/sed.c b/sed.c index 7b3a4236a..b54a9bb9c 100644 --- a/sed.c +++ b/sed.c @@ -672,12 +672,8 @@ extern int sed_main(int argc, char **argv) #endif /* do normal option parsing */ - while ((opt = getopt(argc, argv, "Vhne:f:")) > 0) { + while ((opt = getopt(argc, argv, "hne:f:")) > 0) { switch (opt) { - case 'V': - printf("%s\n", full_version); - exit(0); - break; case 'h': usage(sed_usage); break;