[asterisk-commits] russell: branch group/asterisk-cpp r168463 - /team/group/asterisk-cpp/main/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sun Jan 11 20:17:36 CST 2009


Author: russell
Date: Sun Jan 11 20:17:36 2009
New Revision: 168463

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=168463
Log:
fix features.c for app.h changes

Modified:
    team/group/asterisk-cpp/main/features.c

Modified: team/group/asterisk-cpp/main/features.c
URL: http://svn.digium.com/svn-view/asterisk/team/group/asterisk-cpp/main/features.c?view=diff&rev=168463&r1=168462&r2=168463
==============================================================================
--- team/group/asterisk-cpp/main/features.c (original)
+++ team/group/asterisk-cpp/main/features.c Sun Jan 11 20:17:36 2009
@@ -2913,7 +2913,7 @@
 			}
 		}
 
-		ast_app_parse_options(park_call_options, &flags, NULL, app_args.options);
+		ast_app_parse_options(park_call_options, ARRAY_LEN(park_call_options),&flags, NULL, app_args.options);
 		args.flags = flags.flags;
 
 		res = ast_park_call_full(chan, chan, &args); /* In experiments, using the masq_park_call
@@ -4065,7 +4065,7 @@
 	tmp_data = ast_strdupa(data);
 	AST_STANDARD_APP_ARGS(args, tmp_data);
 	if (!ast_strlen_zero(args.options))
-		ast_app_parse_options(bridge_exec_options, &opts, NULL, args.options);
+		ast_app_parse_options(bridge_exec_options, ARRAY_LEN(bridge_exec_options), &opts, NULL, args.options);
 
 	/* avoid bridge with ourselves */
 	if (!strncmp(chan->name, args.dest_chan, 




More information about the asterisk-commits mailing list