aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-01 14:42:42 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-01 14:42:42 +0000
commit7940aa5a61027ebdfffdd9ad51be61b031547788 (patch)
tree5a5b9c8e88d4a52bb9f4131a09603650af560e63 /funcs
parentcff05027384249349a1c4062d41fab8139d80f99 (diff)
fix the parsing of options in the FILTER function to match the documentation.
(issue #7465) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@36504 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs/func_strings.c b/funcs/func_strings.c
index dff1779c4..9b7900e81 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(<allowed-chars>,<string>)\n");