+diff -ur poldek-0.44.0.orig/conf.c poldek-0.44.0/conf.c
+--- poldek-0.44.0.orig/conf.c 2025-02-26 12:40:22.000000000 +0100
++++ poldek-0.44.0/conf.c 2025-08-10 22:26:33.098247697 +0200
+@@ -1458,33 +1458,33 @@
+ int poldek_conf_get_bool(const tn_hash *htconf, const char *name, int default_v)
+ {
+ const char *v;
+- int bool;
++ int bit;
+
+ if ((v = poldek_conf_get(htconf, name, NULL)) == NULL)
+ return default_v;
+
+- if ((bool = poldek_util_parse_bool(v)) < 0) {
++ if ((bit = poldek_util_parse_bool(v)) < 0) {
+ logn(LOGERR, _("invalid value ('%s') of boolean option '%s'"), v, name);
+- bool = default_v;
++ bit = default_v;
+ }
+
+- return bool;
++ return bit;
+ }
+
+ int poldek_conf_get_bool3(const tn_hash *htconf, const char *name, int default_v)
+ {
+ const char *v;
+- int bool;
++ int bit;
+
+ if ((v = poldek_conf_get(htconf, name, NULL)) == NULL)
+ return default_v;
+
+- if ((bool = poldek_util_parse_bool3(v)) < 0) {
++ if ((bit = poldek_util_parse_bool3(v)) < 0) {
+ logn(LOGERR, _("invalid value ('%s') of option '%s'"), v, name);
+- bool = default_v;
++ bit = default_v;
+ }
+
+- return bool;
++ return bit;
+ }
+
+