summaryrefslogtreecommitdiff
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2012-08-29 22:40:18 +0000
committerRichard Mudgett <rmudgett@digium.com>2012-08-29 22:40:18 +0000
commitd7e0b9fd91cdb1139e8198f50df1b7e96af9fe82 (patch)
tree53b42e9ec090f84078e0faa429d7b3327d1b9f3d /apps/app_meetme.c
parenta4d3cb86d8ec17a8133f95dd165306d1cffc6c66 (diff)
Fix compile errors.
........ Merged revisions 371950 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@371951 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index b66ef03a2..55099dd79 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -1148,11 +1148,11 @@ static void conf_play(struct ast_channel *chan, struct ast_conference *conf, enu
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 @@ static int conf_exec(struct ast_channel *chan, const char *data)
/* 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) {