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:
Matthew Jordan
2013-04-02 11:40:05 +00:00
parent d4e25a456e
commit bcc0aca23d
2 changed files with 5 additions and 5 deletions

View File

@@ -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. */