From f2cca0f357cebb8aedc43673809cae396a921c98 Mon Sep 17 00:00:00 2001 From: Kozlov Dmitry Date: Thu, 14 Oct 2010 17:38:00 +0400 Subject: radius: send Framed-IP-Address in Accounting-Request --- accel-pptpd/ppp/ppp_fsm.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'accel-pptpd/ppp/ppp_fsm.c') diff --git a/accel-pptpd/ppp/ppp_fsm.c b/accel-pptpd/ppp/ppp_fsm.c index dc079fd9..596d941f 100644 --- a/accel-pptpd/ppp/ppp_fsm.c +++ b/accel-pptpd/ppp/ppp_fsm.c @@ -511,19 +511,20 @@ void __init fsm_init(void) { char *opt; - opt = conf_get_opt("lcp", "max-terminate"); + opt = conf_get_opt("ppp", "max-terminate"); if (opt && atoi(opt) > 0) conf_max_terminate = atoi(opt); - opt = conf_get_opt("lcp", "max-configure"); + opt = conf_get_opt("ppp", "max-configure"); if (opt && atoi(opt) > 0) conf_max_configure = atoi(opt); - opt = conf_get_opt("lcp", "max-failure"); + opt = conf_get_opt("ppp", "max-failure"); if (opt && atoi(opt) > 0) conf_max_failure = atoi(opt); - opt = conf_get_opt("lcp", "timeout"); + opt = conf_get_opt("ppp", "timeout"); if (opt && atoi(opt) > 0) conf_timeout = atoi(opt); } + -- cgit v1.2.3