summaryrefslogtreecommitdiff
path: root/main/ast_expr2.h
diff options
context:
space:
mode:
authorSteve Murphy <murf@digium.com>2009-01-15 20:54:59 +0000
committerSteve Murphy <murf@digium.com>2009-01-15 20:54:59 +0000
commit2fb28891a306a7f5dda26ede7bf9567b6ed14ce6 (patch)
treed2b4dff132bd165c4f9a169faecdb0ad75d9ce42 /main/ast_expr2.h
parent9a7efae8fdfb623faa62f06c700cf5682917e3d0 (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: https://origsvn.digium.com/svn/asterisk/trunk@168737 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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;