]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
initialize using the correct data type
authorAlan T. DeKok <aland@freeradius.org>
Fri, 24 Oct 2025 19:12:30 +0000 (15:12 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 24 Oct 2025 19:12:30 +0000 (15:12 -0400)
src/lib/server/cf_util.c

index 15c8b29095d264e55518ae7a19667e1d4de91923..98903a16a6b4f5d5f8f8fd4952accb4e1e86c25b 100644 (file)
@@ -2335,7 +2335,7 @@ void _cf_item_debug(CONF_ITEM const *ci)
                in_ident1 = fr_rb_find(ci->ident1, child) == child? "in ident1 " : "";
 
                if (ci->type != CONF_ITEM_SECTION) {
-                       in_ident2 = false;
+                       in_ident2 = NULL;
                } else {
                        in_ident2 = fr_rb_find(ci->ident2, child) == child? "in ident2 " : "";
                }