From: Kevin P. Fleming Date: Wed, 14 Jun 2006 23:24:26 +0000 (+0000) Subject: use the proper named constants for checking device state, and don't treat UNKNOWN... X-Git-Tag: 1.4.0-beta1~889 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aba00b66fc560a5ae604bc26b76966adb0f7a753;p=thirdparty%2Fasterisk.git use the proper named constants for checking device state, and don't treat UNKNOWN as not available in autofill mode git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@34194 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index 9dc284531b..01db3d6a9b 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -2037,11 +2037,13 @@ static int is_our_turn(struct queue_ent *qe) ast_log(LOG_DEBUG, "Even though there are %d available members, the strategy is ringall so only the head call is allowed in\n", avl); avl = 1; } else { - cur = qe->parent->members; - while (cur) { - if (cur->status == 1) + for (cur = qe->parent->members; cur; cur = cur->next) { + switch (cur->status) { + case AST_DEVICE_NOT_INUSE: + case AST_DEVICE_UNKNOWN: avl++; - cur = cur->next; + break; + } } }