1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
From 8ddb983a546f632986a84a784c4625110f7782a2 Sun Feb 23 15:22:38 2025 +0100
From: Arthur de Jong <arthur@arthurdejong.org>
Date: Sun, 23 Feb 2025 15:22:38 +0100
Subject: Fix variable name (bool) which is a keyword in C23
Closes https://bugs.debian.org/1097481
Origin: upstream, https://arthurdejong.org/git/nss-pam-ldapd/commit/?id=8ddb983a546f632986a84a784c4625110f7782a2
Bug-Debian: https://bugs.debian.org/1097481
---
nslcd/cfg.c | 6 +++---
1 file 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
|