[asterisk-commits] trunk r29592 - /trunk/apps/app_meetme.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon May 22 15:51:57 MST 2006
Author: mogorman
Date: Mon May 22 17:51:56 2006
New Revision: 29592
URL: http://svn.digium.com/view/asterisk?rev=29592&view=rev
Log:
patch from bug 0007204 to make bug 5750 follow standard
manager naming convention.
Modified:
trunk/apps/app_meetme.c
Modified: trunk/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_meetme.c?rev=29592&r1=29591&r2=29592&view=diff
==============================================================================
--- trunk/apps/app_meetme.c (original)
+++ trunk/apps/app_meetme.c Mon May 22 17:51:56 2006
@@ -1694,14 +1694,14 @@
"Uniqueid: %s\r\n"
"Meetme: %s\r\n"
"Usernum: %d\r\n"
- "CIDnum: %s\r\n"
- "CIDname: %s\r\n"
- "Duration: %02d:%02d:%02d\r\n",
+ "CallerIDnum: %s\r\n"
+ "CallerIDname: %s\r\n"
+ "Duration: %ld\r\n",
chan->name, chan->uniqueid, conf->confno,
user->user_no,
S_OR(user->chan->cid.cid_num, "<unknown>"),
- S_OR(user->chan->cid.cid_name, "<no name>"),
- hr, min, sec);
+ S_OR(user->chan->cid.cid_name, "<unknown>"),
+ (now - user->jointime));
conf->users--;
conf->refcount--;
More information about the asterisk-commits
mailing list