From: Mark Michelson Date: Wed, 2 Jan 2008 20:23:23 +0000 (+0000) Subject: Since ',' is the standard argument separator in trunk, change app_queue X-Git-Tag: 1.6.0-beta1~3^2~217 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80c479f94eb3fb4e24f041afa3f19ea7f6d9db6a;p=thirdparty%2Fasterisk.git Since ',' is the standard argument separator in trunk, change app_queue to use AST_STANDARD_APP_ARGS instead of AST_NONSTANDARD_APP_ARGS for determining member data. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@95945 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index 9edb704c37..b258608c88 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -4904,7 +4904,7 @@ static int reload_queues(int reload) /* Add a new member */ ast_copy_string(parse, var->value, sizeof(parse)); - AST_NONSTANDARD_APP_ARGS(args, parse, ','); + AST_STANDARD_APP_ARGS(args, parse); interface = args.interface; if (!ast_strlen_zero(args.penalty)) {