[asterisk-commits] russell: branch 1.2 r38972 -
/branches/1.2/apps/app_queue.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Sat Aug 5 01:08:49 MST 2006
Author: russell
Date: Sat Aug 5 03:08:48 2006
New Revision: 38972
URL: http://svn.digium.com/view/asterisk?rev=38972&view=rev
Log:
remove duplicate queue log entry when the caller exits on a timeout
(issue #7616, ppyy)
Modified:
branches/1.2/apps/app_queue.c
Modified: branches/1.2/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/apps/app_queue.c?rev=38972&r1=38971&r2=38972&view=diff
==============================================================================
--- branches/1.2/apps/app_queue.c (original)
+++ branches/1.2/apps/app_queue.c Sat Aug 5 03:08:48 2006
@@ -2018,7 +2018,6 @@
/* If we have timed out, break out */
if (qe->expire && (time(NULL) > qe->expire)) {
*reason = QUEUE_TIMEOUT;
- ast_queue_log(qe->parent->name, qe->chan->uniqueid,"NONE", "EXITWITHTIMEOUT", "%d", qe->pos);
break;
}
More information about the asterisk-commits
mailing list