Index: apps/app_meetme.c =================================================================== RCS file: /usr/cvsroot/asterisk/apps/app_meetme.c,v retrieving revision 1.54 diff -u -r1.54 app_meetme.c --- apps/app_meetme.c 2 Aug 2004 02:58:15 -0000 1.54 +++ apps/app_meetme.c 2 Aug 2004 13:59:34 -0000 @@ -685,8 +685,9 @@ manager_event(EVENT_FLAG_CALL, "MeetmeJoin", "Channel: %s\r\n" "Uniqueid: %s\r\n" - "Meetme: %s\r\n", - chan->name, chan->uniqueid, conf->confno); + "Meetme: %s\r\n" + "Usernum: %i\r\n", + chan->name, chan->uniqueid, conf->confno, user->user_no); if (!firstpass && !(confflags & CONFFLAG_MONITOR) && !(confflags & CONFFLAG_ADMIN)) { firstpass = 1; @@ -956,8 +957,9 @@ manager_event(EVENT_FLAG_CALL, "MeetmeLeave", "Channel: %s\r\n" "Uniqueid: %s\r\n" - "Meetme: %s\r\n", - chan->name, chan->uniqueid, conf->confno); + "Meetme: %s\r\n" + "Usernum: %i\r\n", + chan->name, chan->uniqueid, conf->confno, user->user_no); prev = NULL; conf->users--; if (confflags & CONFFLAG_ADMINEXIT)