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


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@169575 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson
2009-01-20 21:57:49 +00:00
parent 3a69dbe8cc
commit b072c19f40

View File

@@ -888,7 +888,7 @@ static void init_queue(struct call_queue *q)
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;