From: Russell Bryant Date: Sat, 1 Jul 2006 14:42:42 +0000 (+0000) Subject: fix the parsing of options in the FILTER function to match the documentation. X-Git-Tag: 1.4.0-beta1~709 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=df2223416d4497b168feb9bcb7cb23cdf8104ba4;p=thirdparty%2Fasterisk.git fix the parsing of options in the FILTER function to match the documentation. (issue #7465) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@36504 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/funcs/func_strings.c b/funcs/func_strings.c index dff1779c47..9b7900e81b 100644 --- a/funcs/func_strings.c +++ b/funcs/func_strings.c @@ -81,7 +81,7 @@ static int filter(struct ast_channel *chan, char *cmd, char *parse, char *buf, ); char *outbuf = buf; - AST_STANDARD_APP_ARGS(args, parse); + AST_NONSTANDARD_APP_ARGS(args, parse, ','); if (!args.string) { ast_log(LOG_ERROR, "Usage: FILTER(,)\n");