diff options
author | Matt Kraai | 2000-07-19 19:24:01 +0000 |
---|---|---|
committer | Matt Kraai | 2000-07-19 19:24:01 +0000 |
commit | 27a804246af28c5d3d1f69d93049e3e21492bc48 (patch) | |
tree | 1532267f0161afd05240909eafea4283247df356 /findutils | |
parent | 869057238b4ae1544ee9df28fca4157b041175f9 (diff) | |
download | busybox-27a804246af28c5d3d1f69d93049e3e21492bc48.zip busybox-27a804246af28c5d3d1f69d93049e3e21492bc48.tar.gz |
Centralize handling of --help.
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/grep.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/findutils/grep.c b/findutils/grep.c index 2f240e4..6161ba7 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -105,10 +105,6 @@ extern int grep_main(int argc, char **argv) int opt; int reflags; - /* do special-case option parsing */ - if (argv[1] && (strcmp(argv[1], "--help") == 0)) - usage(grep_usage); - /* do normal option parsing */ while ((opt = getopt(argc, argv, "iHhnqvsc")) > 0) { switch (opt) { |