From: BJ Weschke Date: Mon, 22 May 2006 15:28:28 +0000 (+0000) Subject: Add UniqueID to the leave manager event. X-Git-Tag: 1.4.0-beta1~1263 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d1fc8d4687994a02b18f480f3cec4e07e0dbf506;p=thirdparty%2Fasterisk.git Add UniqueID to the leave manager event. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29434 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index e42ba36855..5a35374539 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 */