[asterisk-commits] file: branch 1.4 r55129 - /branches/1.4/apps/app_queue.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Fri Feb 16 19:59:51 MST 2007


Author: file
Date: Fri Feb 16 20:59:50 2007
New Revision: 55129

URL: http://svn.digium.com/view/asterisk?view=rev&rev=55129
Log:
Make the 'i' option of Queue actually work. (issue #8986 reported by utis)

Modified:
    branches/1.4/apps/app_queue.c

Modified: branches/1.4/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_queue.c?view=diff&rev=55129&r1=55128&r2=55129
==============================================================================
--- branches/1.4/apps/app_queue.c (original)
+++ branches/1.4/apps/app_queue.c Fri Feb 16 20:59:50 2007
@@ -1929,7 +1929,10 @@
 				if (!ast_strlen_zero(o->chan->call_forward) && !forwardsallowed) {
 					if (option_verbose > 2)
 						ast_verbose(VERBOSE_PREFIX_3 "Forwarding %s to '%s' prevented.\n", in->name, o->chan->call_forward);
-                                        winner = o->chan = NULL;
+					numnochan++;
+					do_hang(o);
+					winner = NULL;
+					continue;
 				} else if (!ast_strlen_zero(o->chan->call_forward)) {
 					char tmpchan[256];
 					char *stuff;



More information about the asterisk-commits mailing list