From 1f45b268cb5b0b11557f562ee5a5f54d60ac72aa Mon Sep 17 00:00:00 2001 From: Mark Whitley Date: Thu, 20 Jul 2000 23:08:40 +0000 Subject: 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. --- editors/sed.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'editors/sed.c') 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; -- cgit v1.2.3