From dda49ce86bf5eba11c2fa9ccfbe519f98b9b4820 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Fri, 19 May 2006 17:04:02 +0000 Subject: [PATCH] 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 --- channels/chan_zap.c | 2 ++ 1 file changed, 2 insertions(+) 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")) {