[Asterisk-cvs] asterisk/apps app_meetme.c,1.55,1.56

markster at lists.digium.com markster at lists.digium.com
Mon Aug 2 11:42:10 CDT 2004


Update of /usr/cvsroot/asterisk/apps
In directory localhost.localdomain:/tmp/cvs-serv31686/apps

Modified Files:
	app_meetme.c 
Log Message:
Add user number (bug #2203)


Index: app_meetme.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_meetme.c,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- app_meetme.c	2 Aug 2004 13:10:15 -0000	1.55
+++ app_meetme.c	2 Aug 2004 15:28:12 -0000	1.56
@@ -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) 




More information about the svn-commits mailing list