diff options
author | Mark Whitley <markw@lineo.com> | 2000-07-20 23:08:40 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-07-20 23:08:40 +0000 |
commit | 1f45b268cb5b0b11557f562ee5a5f54d60ac72aa (patch) | |
tree | 704dc3055f1393bfff4e8bc5bb0eae4d0d6a7a44 | |
parent | 1ac435c15e23ae1bdd87d2b77754b6f6eb159bee (diff) | |
download | busybox-w32-1f45b268cb5b0b11557f562ee5a5f54d60ac72aa.tar.gz busybox-w32-1f45b268cb5b0b11557f562ee5a5f54d60ac72aa.tar.bz2 busybox-w32-1f45b268cb5b0b11557f562ee5a5f54d60ac72aa.zip |
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.
-rw-r--r-- | editors/sed.c | 6 | ||||
-rw-r--r-- | sed.c | 6 |
2 files changed, 2 insertions, 10 deletions
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) | |||
672 | #endif | 672 | #endif |
673 | 673 | ||
674 | /* do normal option parsing */ | 674 | /* do normal option parsing */ |
675 | while ((opt = getopt(argc, argv, "Vhne:f:")) > 0) { | 675 | while ((opt = getopt(argc, argv, "hne:f:")) > 0) { |
676 | switch (opt) { | 676 | switch (opt) { |
677 | case 'V': | ||
678 | printf("%s\n", full_version); | ||
679 | exit(0); | ||
680 | break; | ||
681 | case 'h': | 677 | case 'h': |
682 | usage(sed_usage); | 678 | usage(sed_usage); |
683 | break; | 679 | break; |
@@ -672,12 +672,8 @@ extern int sed_main(int argc, char **argv) | |||
672 | #endif | 672 | #endif |
673 | 673 | ||
674 | /* do normal option parsing */ | 674 | /* do normal option parsing */ |
675 | while ((opt = getopt(argc, argv, "Vhne:f:")) > 0) { | 675 | while ((opt = getopt(argc, argv, "hne:f:")) > 0) { |
676 | switch (opt) { | 676 | switch (opt) { |
677 | case 'V': | ||
678 | printf("%s\n", full_version); | ||
679 | exit(0); | ||
680 | break; | ||
681 | case 'h': | 677 | case 'h': |
682 | usage(sed_usage); | 678 | usage(sed_usage); |
683 | break; | 679 | break; |