grep: yet another fixlet for EXTRA_COMPAT

diff --git a/findutils/grep.c b/findutils/grep.c
index e0f01c9..9d38ef9 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -559,6 +559,11 @@
 	) {
 		reflags |= REG_EXTENDED;
 	}
+#if ENABLE_EXTRA_COMPAT
+	else {
+		reflags = RE_SYNTAX_GREP;
+	}
+#endif
 
 	if (option_mask32 & OPT_i) {
 #if !ENABLE_EXTRA_COMPAT