mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
Make things work again
Sorry folks. ',' are still greater than '|'. Thanks for playing along :-) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@384514 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -709,13 +709,13 @@ static char *xmldoc_get_syntax_fun(struct ast_xml_node *rootnode, const char *ro
|
||||
}
|
||||
|
||||
/* Get the argument separator from the root node attribute name 'argsep', if not found
|
||||
defaults to '|'. */
|
||||
defaults to ','. */
|
||||
attrargsep = ast_xml_get_attribute(rootnode, "argsep");
|
||||
if (attrargsep) {
|
||||
argsep = ast_strdupa(attrargsep);
|
||||
ast_xml_free_attr(attrargsep);
|
||||
} else {
|
||||
argsep = ast_strdupa("|");
|
||||
argsep = ast_strdupa(",");
|
||||
}
|
||||
|
||||
/* Get order of evaluation. */
|
||||
|
Reference in New Issue
Block a user