summaryrefslogtreecommitdiff
path: root/funcs/func_strings.c
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2008-01-02 21:08:33 +0000
committerMark Michelson <mmichelson@digium.com>2008-01-02 21:08:33 +0000
commit5107c5474c1959e8156a5e25b536022913c06218 (patch)
tree739e5cdc865e251d4363c04710c26c1174b637dd /funcs/func_strings.c
parent70071915e19d261449408c3d05abaebd3d7a7819 (diff)
Change instances of AST_NONSTANDARD_APP_ARGS(foo, bar, ',') to AST_STANDARD_APP_ARGS(foo, bar)
(closes issue #11668, reported and patched by mvanbaak) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@95994 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs/func_strings.c')
-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 8881a1569..da234949a 100644
--- a/funcs/func_strings.c
+++ b/funcs/func_strings.c
@@ -379,7 +379,7 @@ static int hash_read(struct ast_channel *chan, const char *cmd, char *data, char
hashkeys_read(chan, "HASHKEYS", arg.hashname, colnames, sizeof(colnames));
pbx_builtin_setvar_helper(chan, "~ODBCFIELDS~", colnames);
- AST_NONSTANDARD_APP_ARGS(arg2, colnames, ',');
+ AST_STANDARD_APP_ARGS(arg2, colnames);
*buf = '\0';
/* Now get the corresponding column values, in exactly the same order */