aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-05 08:10:20 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-05 08:10:20 +0000
commitf32d2d3d0584e600b166c73d6b9ee7bea78acee1 (patch)
treedb458c3d76a76c682d8e1d4f08e748fcc25b8691 /apps/app_queue.c
parentc5e5c92d3105bd9203ff00e5ae787747721bdc47 (diff)
Merged revisions 38972 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r38972 | russell | 2006-08-05 04:08:48 -0400 (Sat, 05 Aug 2006) | 3 lines remove duplicate queue log entry when the caller exits on a timeout (issue #7616, ppyy) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@38973 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 e53af16b6..774c8ca17 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -2135,7 +2135,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;
}