[asterisk-commits] mmichelson: branch 1.6.1 r169575 - in	/branches/1.6.1: ./ apps/app_queue.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Tue Jan 20 15:57:50 CST 2009
    
    
  
Author: mmichelson
Date: Tue Jan 20 15:57:49 2009
New Revision: 169575
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=169575
Log:
Merged revisions 169574 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk
........
r169574 | mmichelson | 2009-01-20 15:57:24 -0600 (Tue, 20 Jan 2009) | 6 lines
Use the default timeout for a queue instead of -1
(closes issue #14272)
Reported by: timking
........
Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/apps/app_queue.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/apps/app_queue.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/apps/app_queue.c?view=diff&rev=169575&r1=169574&r2=169575
==============================================================================
--- branches/1.6.1/apps/app_queue.c (original)
+++ branches/1.6.1/apps/app_queue.c Tue Jan 20 15:57:49 2009
@@ -888,7 +888,7 @@
 
 	q->dead = 0;
 	q->retry = DEFAULT_RETRY;
-	q->timeout = -1;
+	q->timeout = DEFAULT_TIMEOUT;
 	q->maxlen = 0;
 	q->announcefrequency = 0;
 	q->minannouncefrequency = DEFAULT_MIN_ANNOUNCE_FREQUENCY;
    
    
More information about the asterisk-commits
mailing list