aboutsummaryrefslogtreecommitdiffstats
path: root/main/ast_expr2.h
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-15 20:54:59 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-15 20:54:59 +0000
commit40e2c0e15ac823b7673596e94dc627b9d069a47d (patch)
treed2b4dff132bd165c4f9a169faecdb0ad75d9ce42 /main/ast_expr2.h
parentfe480759d927d3b4576af945a36d6afc5113884e (diff)
This patch allows null args in ast_expr2 func calls, and fixes commas being converted to pipes, which was 1.4 type stuff.
If the user says count=ENUMLOOKUP(${EXTEN},ALL,c,,enum.mydomain.tld); then it won't complain about the empty arg (c,,...) and fabled's patch won't let it swap the commas for pipes. Ran it thru my dialplan and no complaints. (closes issue #14169) Reported by: fabled Patches: function-argument-separator-fix.diff uploaded by fabled (license 448) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@168737 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/ast_expr2.h')
-rw-r--r--main/ast_expr2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/ast_expr2.h b/main/ast_expr2.h
index d2a560aa1..5bf60f71a 100644
--- a/main/ast_expr2.h
+++ b/main/ast_expr2.h
@@ -94,7 +94,7 @@
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE
-#line 342 "ast_expr2.y"
+#line 344 "ast_expr2.y"
{
struct val *val;
struct expr_node *arglist;