aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2000-07-20 23:08:40 +0000
committerMark Whitley <markw@lineo.com>2000-07-20 23:08:40 +0000
commit1f45b268cb5b0b11557f562ee5a5f54d60ac72aa (patch)
tree704dc3055f1393bfff4e8bc5bb0eae4d0d6a7a44
parent1ac435c15e23ae1bdd87d2b77754b6f6eb159bee (diff)
downloadbusybox-1f45b268cb5b0b11557f562ee5a5f54d60ac72aa.tar.gz
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.c6
-rw-r--r--sed.c6
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)
#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;