aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-07-04 16:23:44 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-07-04 16:23:44 +0000
commita5a228b39321e1d71a2a8d906f32058f4f3bfa6b (patch)
tree476e7a69cab24b48903e4140855e058f20cf6f17 /apps
parentbea5c0674d72fcdbaf2d04932b2bee04cb030224 (diff)
Fix iax2 video/voice and update queueing
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1161 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-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