mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 04:30:28 +00:00
Merged revisions 101216 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r101216 | mmichelson | 2008-01-30 09:23:00 -0600 (Wed, 30 Jan 2008) | 5 lines Fix a logic error with regards to autofill. Prior to this change, it was possible for a caller to go out of turn if autofill were enabled and callers ahead in the queue were attempting to call a member. This change fixes this. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@101217 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2666,8 +2666,9 @@ static int is_our_turn(struct queue_ent *qe)
|
|||||||
|
|
||||||
ast_debug(1, "There are %d available members.\n", avl);
|
ast_debug(1, "There are %d available members.\n", avl);
|
||||||
|
|
||||||
while ((idx < avl) && (ch) && !ch->pending && (ch != qe)) {
|
while ((idx < avl) && (ch) && (ch != qe)) {
|
||||||
idx++;
|
if (!ch->pending)
|
||||||
|
idx++;
|
||||||
ch = ch->next;
|
ch = ch->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user