From: Joshua Colp Date: Fri, 19 May 2006 17:04:02 +0000 (+0000) Subject: Make the minidle option actually exist as documented (issue #7159 reported by imran) X-Git-Tag: 1.2.9.1~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dda49ce86bf5eba11c2fa9ccfbe519f98b9b4820;p=thirdparty%2Fasterisk.git Make the minidle option actually exist as documented (issue #7159 reported by imran) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@28698 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 6dae296bc9..847063a5ba 100644 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -10718,6 +10718,8 @@ static int setup_zap(int reload) v->value, v->lineno); } else if (!strcasecmp(v->name, "minunused")) { minunused = atoi(v->value); + } else if (!strcasecmp(v->name, "minidle")) { + minidle = atoi(v->value); } else if (!strcasecmp(v->name, "idleext")) { ast_copy_string(idleext, v->value, sizeof(idleext)); } else if (!strcasecmp(v->name, "idledial")) {