From: Alan T. DeKok Date: Fri, 26 Feb 2021 16:36:06 +0000 (-0500) Subject: remove unused variable X-Git-Tag: release_3_0_22~192 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ecfe311143227a8955c61a74510725e9fac57fd;p=thirdparty%2Ffreeradius-server.git remove unused variable --- diff --git a/src/main/client.c b/src/main/client.c index 20a5a927c7..bfe89cf821 100644 --- a/src/main/client.c +++ b/src/main/client.c @@ -550,7 +550,7 @@ RADCLIENT_LIST *client_list_parse_section(CONF_SECTION *section, bool tls_requir RADCLIENT_LIST *client_list_parse_section(CONF_SECTION *section, UNUSED bool tls_required) #endif { - bool global = false, in_server = false; + bool in_server = false; CONF_SECTION *cs; RADCLIENT *c = NULL; RADCLIENT_LIST *clients = NULL; @@ -579,7 +579,6 @@ RADCLIENT_LIST *client_list_parse_section(CONF_SECTION *section, UNUSED bool tls } if (cf_top_section(section) == section) { - global = true; clients->name = "global"; clients->server = NULL; }