From: Mark Spencer Date: Mon, 8 Aug 2005 02:32:37 +0000 (+0000) Subject: Show callerid in meetme show list (bug #4851 with mods) X-Git-Tag: 1.2.0-beta1~115 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce49016c96a526c35b8a5cd6aa70b23a42cb88dd;p=thirdparty%2Fasterisk.git Show callerid in meetme show list (bug #4851 with mods) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6308 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_meetme.c b/apps/app_meetme.c index fadd5f544b..5589f29674 100755 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -466,7 +466,7 @@ static int conf_cmd(int fd, int argc, char **argv) { /* Show all the users */ user = cnf->firstuser; while(user) { - ast_cli(fd, "User #: %d Channel: %s %s %s %s %s\n", user->user_no, user->chan->name, (user->userflags & CONFFLAG_ADMIN) ? "(Admin)" : "", (user->userflags & CONFFLAG_MONITOR) ? "(Listen only)" : "", (user->adminflags & ADMINFLAG_MUTED) ? "(Admn Muted)" : "", istalking(user->talking)); + ast_cli(fd, "User #: %-2.2d %12.12s %-20.20s Channel: %s %s %s %s %s\n", user->user_no, user->chan->cid.cid_num ? user->chan->cid.cid_num : "", user->chan->cid.cid_name ? user->chan->cid.cid_name : "", user->chan->name, (user->userflags & CONFFLAG_ADMIN) ? "(Admin)" : "", (user->userflags & CONFFLAG_MONITOR) ? "(Listen only)" : "", (user->adminflags & ADMINFLAG_MUTED) ? "(Admn Muted)" : "", istalking(user->talking)); user = user->nextuser; } ast_cli(fd,"%d users in that conference.\n",cnf->users);