]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Support extended regular expressions
authorMark Spencer <markster@digium.com>
Mon, 21 Jun 2004 18:20:17 +0000 (18:20 +0000)
committerMark Spencer <markster@digium.com>
Mon, 21 Jun 2004 18:20:17 +0000 (18:20 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3261 65c4cc65-6c06-0410-ace0-fbb531ad65f3

ast_expr.y

index 17ac1e9f95615170c77d10917ba88f1657a0db0c..5125ec56332a83b66e020e5165f08232799cda0e 100755 (executable)
@@ -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);