diff options
-rw-r--r-- | nslcd/cfg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nslcd/cfg.c b/nslcd/cfg.c index ded797a..b984b0e 100644 --- a/nslcd/cfg.c +++ b/nslcd/cfg.c @@ -207,10 +207,10 @@ static int get_boolean(const char *filename, int lnr, return parse_boolean(filename, lnr, token); } -static const char *print_boolean(int bool) +static const char *print_boolean(int value) { - if (bool) return "yes"; - else return "no"; + if (value) return "yes"; + else return "no"; } #define TIME_MINUTES 60 |