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-w32-bb0088e98048101d368d00249ab0807db56f2c49.tar.gz busybox-w32-bb0088e98048101d368d00249ab0807db56f2c49.tar.bz2 busybox-w32-bb0088e98048101d368d00249ab0807db56f2c49.zip |
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) | |||
245 | 245 | ||
246 | #ifdef CONFIG_FEATURE_GREP_EGREP_ALIAS | 246 | #ifdef CONFIG_FEATURE_GREP_EGREP_ALIAS |
247 | if (strcmp (basename (argv[0]), "egrep") == 0) | 247 | if (strcmp (basename (argv[0]), "egrep") == 0) |
248 | reflags |= REG_ICASE; | ||
249 | reflags |= REG_EXTENDED; | 248 | reflags |= REG_EXTENDED; |
250 | #endif | 249 | #endif |
251 | 250 | ||