diff options
author | Matt Kraai <kraai@debian.org> | 2001-10-31 16:16:31 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-10-31 16:16:31 +0000 |
commit | bb0088e98048101d368d00249ab0807db56f2c49 (patch) | |
tree | 2e405dd9d54ea3ea2cb7475cb3f990235e2460e0 /findutils | |
parent | 8fc05897779393decadaf808e4694fbf1efe1c56 (diff) | |
download | busybox-bb0088e98048101d368d00249ab0807db56f2c49.tar.gz |
Make egrep only set REG_EXTENDED flag.
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/grep.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/findutils/grep.c b/findutils/grep.c index eeab16387..7afa817da 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -245,7 +245,6 @@ extern int grep_main(int argc, char **argv) #ifdef CONFIG_FEATURE_GREP_EGREP_ALIAS if (strcmp (basename (argv[0]), "egrep") == 0) - reflags |= REG_ICASE; reflags |= REG_EXTENDED; #endif |