[asterisk-commits] trunk r25801 - /trunk/apps/app_queue.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon May 8 17:21:40 MST 2006
Author: bweschke
Date: Mon May 8 19:21:40 2006
New Revision: 25801
URL: http://svn.digium.com/view/asterisk?rev=25801&view=rev
Log:
strategy "ringall" is really int value of 0, not 1.
Modified:
trunk/apps/app_queue.c
Modified: trunk/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_queue.c?rev=25801&r1=25800&r2=25801&view=diff
==============================================================================
--- trunk/apps/app_queue.c (original)
+++ trunk/apps/app_queue.c Mon May 8 19:21:40 2006
@@ -1925,7 +1925,7 @@
if (option_debug)
ast_log(LOG_DEBUG, "There are %d available members.\n", avl);
- if (qe->parent->strategy == 1) {
+ if (qe->parent->strategy == 0) {
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);
avl = 1;
More information about the asterisk-commits
mailing list