summaryrefslogtreecommitdiff
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-07-04 16:23:44 +0000
committerMark Spencer <markster@digium.com>2003-07-04 16:23:44 +0000
commitc2ad77b27fb0c565a2a2e71b7b6b2592332f4f01 (patch)
tree476e7a69cab24b48903e4140855e058f20cf6f17 /apps/app_queue.c
parent5a4e282ae810f52195417c3e70a2d203b18a4142 (diff)
Fix iax2 video/voice and update queueing
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1161 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_queue.c')
-rwxr-xr-xapps/app_queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 47df6417b..5ba34ee6f 100755
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -179,8 +179,8 @@ static int join_queue(char *queuename, struct queue_ent *qe)
q->count++;
res = 0;
manager_event(EVENT_FLAG_CALL, "Join",
- "Channel: %s\r\nQueue: %s\r\nPosition: %d\r\nCount: %d\r\n",
- qe->chan->name, q->name, qe->pos, q->count );
+ "Channel: %s\r\nCallerID:%s\r\nQueue: %s\r\nPosition: %d\r\nCount: %d\r\n",
+ qe->chan->name, qe->chan->callerid ? qe->chan->callerid : "", q->name, qe->pos, q->count );
#if 0
ast_log(LOG_NOTICE, "Queue '%s' Join, Channel '%s', Position '%d'\n", q->name, qe->chan->name, qe->pos );
#endif