aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-05 08:08:48 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-05 08:08:48 +0000
commitdcc9fb269c579b9e1fcf1e4e072c246c27988127 (patch)
tree8779f733488449dc36aa8f6ab01eb41d925007e6 /apps/app_queue.c
parent1803240e5d7ece6e27fed0f52457689abbb4fc92 (diff)
remove duplicate queue log entry when the caller exits on a timeout
(issue #7616, ppyy) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@38972 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_queue.c')
-rw-r--r--apps/app_queue.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index e336fa231..84fb751b1 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;
}