As per a discussion on the mailing list between Matt and Pavel. I have removed
authorMark Whitley <markw@lineo.com>
Thu, 20 Jul 2000 23:08:40 +0000 (23:08 -0000)
committerMark Whitley <markw@lineo.com>
Thu, 20 Jul 2000 23:08:40 +0000 (23:08 -0000)
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.

editors/sed.c
sed.c

index 7b3a423..b54a9bb 100644 (file)
@@ -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 7b3a423..b54a9bb 100644 (file)
--- 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;