summaryrefslogtreecommitdiff
path: root/apps/app_exec.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2010-03-11 21:07:07 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2010-03-11 21:07:07 +0000
commitd38d930ed5e9d0f6b1aea32250245fe8a4466bbd (patch)
tree37d8b4993d4d7684003c44a9ae023a1da22fbde6 /apps/app_exec.c
parentc83f35d4a093746acac3e5555136b2ff1b204574 (diff)
Because ExecIf needs to reprocess arguments, it's best if we don't remove quotes during parsing.
(closes issue #16905) Reported by: ip-rob Patches: 20100303__issue16905.diff.txt uploaded by tilghman (license 14) Tested by: ip-rob git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@251884 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_exec.c')
-rw-r--r--apps/app_exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_exec.c b/apps/app_exec.c
index 6ffc0bca9..2a4da1e2f 100644
--- a/apps/app_exec.c
+++ b/apps/app_exec.c
@@ -235,13 +235,13 @@ static int execif_exec(struct ast_channel *chan, const char *data)
} else {
/* Preferred syntax */
- AST_NONSTANDARD_APP_ARGS(expr, parse, '?');
+ AST_NONSTANDARD_RAW_ARGS(expr, parse, '?');
if (ast_strlen_zero(expr.remainder)) {
ast_log(LOG_ERROR, "Usage: ExecIf(<expr>?<appiftrue>(<args>)[:<appiffalse>(<args)])\n");
return -1;
}
- AST_NONSTANDARD_APP_ARGS(apps, expr.remainder, ':');
+ AST_NONSTANDARD_RAW_ARGS(apps, expr.remainder, ':');
if (apps.t && (truedata = strchr(apps.t, '('))) {
*truedata++ = '\0';