aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-22 15:28:28 +0000
committerbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-22 15:28:28 +0000
commita05ec3ad37375606d306003ab491314304879a63 (patch)
tree983c559c5312437c2efe4c807c8f328bccbeecef /apps
parent043016071507235bddad4d781769d29d47a2816a (diff)
Add UniqueID to the leave manager event.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@29434 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index e42ba3685..5a3537453 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -1263,8 +1263,8 @@ static void leave_queue(struct queue_ent *qe)
/* Take us out of the queue */
manager_event(EVENT_FLAG_CALL, "Leave",
- "Channel: %s\r\nQueue: %s\r\nCount: %d\r\n",
- qe->chan->name, q->name, q->count);
+ "Channel: %s\r\nQueue: %s\r\nCount: %d\r\nUniqueid: %s\r\n",
+ qe->chan->name, q->name, q->count, qe->chan->uniqueid);
if (option_debug)
ast_log(LOG_DEBUG, "Queue '%s' Leave, Channel '%s'\n", q->name, qe->chan->name );
/* Take us out of the queue */