aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xast_expr.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/ast_expr.y b/ast_expr.y
index 17ac1e9f9..5125ec563 100755
--- a/ast_expr.y
+++ b/ast_expr.y
@@ -826,7 +826,7 @@ struct val *a, *b;
to_string(b);
/* compile regular expression */
- if ((eval = regcomp (&rp, b->u.s, 0)) != 0) {
+ if ((eval = regcomp (&rp, b->u.s, REG_EXTENDED)) != 0) {
regerror (eval, &rp, errbuf, sizeof(errbuf));
ast_log(LOG_WARNING,"regcomp() error : %s",errbuf);
free_value(a);