diff options
author | Guillaume Nault <g.nault@alphalink.fr> | 2013-01-07 20:01:26 +0100 |
---|---|---|
committer | Kozlov Dmitry <xeb@mail.ru> | 2013-01-11 16:24:14 +0400 |
commit | 3a68b66387b2e352d4ffe60c0dd4aeeb2c599fb4 (patch) | |
tree | c4a2a5659f1d6f15032291465101130e0085b366 /accel-pppd/radius | |
parent | 98466f59d258d2079755d2a1808cd34631d9f230 (diff) | |
download | accel-ppp-3a68b66387b2e352d4ffe60c0dd4aeeb2c599fb4.tar.gz accel-ppp-3a68b66387b2e352d4ffe60c0dd4aeeb2c599fb4.zip |
Fix boolean options parsing in configuration file
Explicitely interpret zero values when parsing boolean options. This
allows to unset boolean parameters such as "verbose" when reloading
the configuration.
Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
Diffstat (limited to 'accel-pppd/radius')
-rw-r--r-- | accel-pppd/radius/radius.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/accel-pppd/radius/radius.c b/accel-pppd/radius/radius.c index 2709fa94..d7f30f28 100644 --- a/accel-pppd/radius/radius.c +++ b/accel-pppd/radius/radius.c @@ -501,13 +501,13 @@ static int load_config(void) conf_acct_timeout = atoi(opt); opt = conf_get_opt("radius", "verbose"); - if (opt && atoi(opt) > 0) - conf_verbose = 1; - + if (opt && atoi(opt) >= 0) + conf_verbose = atoi(opt) > 0; + opt = conf_get_opt("radius", "interim-verbose"); - if (opt && atoi(opt) > 0) - conf_interim_verbose = 1; - + if (opt && atoi(opt) >= 0) + conf_interim_verbose = atoi(opt) > 0; + opt = conf_get_opt("radius", "nas-ip-address"); if (opt) conf_nas_ip_address = inet_addr(opt); |