[svn-commits] mmichelson: trunk r95945 - /trunk/apps/app_queue.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Wed Jan 2 14:23:24 CST 2008
Author: mmichelson
Date: Wed Jan 2 14:23:23 2008
New Revision: 95945
URL: http://svn.digium.com/view/asterisk?view=rev&rev=95945
Log:
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.
Modified:
trunk/apps/app_queue.c
Modified: trunk/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_queue.c?view=diff&rev=95945&r1=95944&r2=95945
==============================================================================
--- trunk/apps/app_queue.c (original)
+++ trunk/apps/app_queue.c Wed Jan 2 14:23:23 2008
@@ -4904,7 +4904,7 @@
/* 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)) {
More information about the svn-commits
mailing list