Changing an inaccurate debug message to be less inaccurate. Under the circumstances, this

message would always report that there were 0 members available, even though that may not be true.




git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@89493 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson
2007-11-21 19:24:22 +00:00
parent 9c29d80d70
commit d105c24a57

View File

@@ -2296,7 +2296,7 @@ static int is_our_turn(struct queue_ent *qe)
if (qe->parent->strategy == QUEUE_STRATEGY_RINGALL) {
if (option_debug)
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);
ast_log(LOG_DEBUG, "Even though there may be multiple members available, the strategy is ringall so only the head call is allowed in\n", avl);
avl = 1;
} else {
struct ao2_iterator mem_iter = ao2_iterator_init(qe->parent->members, 0);