From: Russell Bryant Date: Sat, 5 Aug 2006 08:08:48 +0000 (+0000) Subject: remove duplicate queue log entry when the caller exits on a timeout X-Git-Tag: 1.2.11~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e81646d2dddcb7c8ae31b3f0c482131d94d504a8;p=thirdparty%2Fasterisk.git remove duplicate queue log entry when the caller exits on a timeout (issue #7616, ppyy) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@38972 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index e336fa2313..84fb751b1c 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -2018,7 +2018,6 @@ static int wait_our_turn(struct queue_ent *qe, int ringing, enum queue_result *r /* 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; }