summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-07-13 15:37:56 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-07-13 15:37:56 +0000
commitdea45f3aa32789a684cc25984c9086e83e62a506 (patch)
treeade1d671dc600ac31f7b529a507a979a205491c7 /apps
parentce8a64969629329efb97315f2888c65f7c1b64fa (diff)
only compare the queue entry's max penalty to the member's penalty when the queue entry actually has a non-zero penalty
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37515 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 8c6b132d2..8d55ac8f6 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -2190,7 +2190,7 @@ static int update_queue(struct call_queue *q, struct member *member)
static int calc_metric(struct call_queue *q, struct member *mem, int pos, struct queue_ent *qe, struct callattempt *tmp)
{
- if (mem->penalty > qe->max_penalty)
+ if (qe->max_penalty && (mem->penalty > qe->max_penalty))
return -1;
switch (q->strategy) {