From fa13a5f113d8b51b1aad5f19d051e2badf0058d1 Mon Sep 17 00:00:00 2001 From: Joshua Colp <jcolp@digium.com> Date: Fri, 19 May 2006 17:05:22 +0000 Subject: [PATCH] Merged revisions 28698 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r28698 | file | 2006-05-19 14:04:02 -0300 (Fri, 19 May 2006) | 2 lines Make the minidle option actually exist as documented (issue #7159 reported by imran) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@28703 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 d639579854..d83f6ae0ab 100644 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -10847,6 +10847,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")) { -- GitLab