grep: yet another fixlet for EXTRA_COMPAT
authorDenis Vlasenko <vda.linux@googlemail.com>
Fri, 19 Sep 2008 21:32:51 +0000 (21:32 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Fri, 19 Sep 2008 21:32:51 +0000 (21:32 -0000)
findutils/grep.c

index e0f01c9..9d38ef9 100644 (file)
@@ -559,6 +559,11 @@ int grep_main(int argc, char **argv)
        ) {
                reflags |= REG_EXTENDED;
        }
+#if ENABLE_EXTRA_COMPAT
+       else {
+               reflags = RE_SYNTAX_GREP;
+       }
+#endif
 
        if (option_mask32 & OPT_i) {
 #if !ENABLE_EXTRA_COMPAT