[svn-commits] rmudgett: branch 11 r371950 - /branches/11/apps/app_meetme.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Aug 29 17:38:57 CDT 2012


Author: rmudgett
Date: Wed Aug 29 17:38:54 2012
New Revision: 371950

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=371950
Log:
Fix compile errors.

Modified:
    branches/11/apps/app_meetme.c

Modified: branches/11/apps/app_meetme.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/apps/app_meetme.c?view=diff&rev=371950&r1=371949&r2=371950
==============================================================================
--- branches/11/apps/app_meetme.c (original)
+++ branches/11/apps/app_meetme.c Wed Aug 29 17:38:54 2012
@@ -1148,11 +1148,11 @@
 	int res = -1;
 
 	ast_test_suite_event_notify("CONFPLAY", "Channel: %s\r\n"
-									"Conference: %s\r\n"
-									"Marked: %d",
-									chan->name,
-									conf->confno,
-									conf->markedusers);
+		"Conference: %s\r\n"
+		"Marked: %d",
+		ast_channel_name(chan),
+		conf->confno,
+		conf->markedusers);
 
 	if (!ast_check_hangup(chan))
 		res = ast_autoservice_start(chan);
@@ -4607,7 +4607,7 @@
 							/* Prompt user for pin if pin is required */
 							ast_test_suite_event_notify("PLAYBACK", "Message: conf-getpin\r\n"
 								"Channel: %s",
-								chan->name);
+								ast_channel_name(chan));
 							res = ast_app_getdata(chan, "conf-getpin", pin + strlen(pin), sizeof(pin) - 1 - strlen(pin), 0);
 						}
 						if (res >= 0) {




More information about the svn-commits mailing list