Merged revisions 247168 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r247168 | mmichelson | 2010-02-17 10:24:17 -0600 (Wed, 17 Feb 2010) | 3 lines
  
  Make sure that when autofill is disabled that callers not in the front of the queue cannot place calls.
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@247169 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson 2010-02-17 16:24:54 +00:00
parent bbb5acc65e
commit c54f8ced1b
1 changed files with 5 additions and 3 deletions

View File

@ -3545,9 +3545,11 @@ static int is_our_turn(struct queue_ent *qe)
}
ao2_unlock(qe->parent);
/* If the queue entry is within avl [the number of available members] calls from the top ... */
if (ch && idx < avl) {
/* If the queue entry is within avl [the number of available members] calls from the top ...
* Autofill and position check added to support autofill=no (as only calls
* from the front of the queue are valid when autofill is disabled)
*/
if (ch && idx < avl && (qe->parent->autofill || qe->pos == 1)) {
ast_debug(1, "It's our turn (%s).\n", qe->chan->name);
res = 1;
} else {