From f1bc1ed4be5f2698561c60eceb90074e7f3c36a3 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Tue, 1 Jun 2021 10:25:43 -0500 Subject: [PATCH] station: Do not check deprecated enable_network_config Enough time has passed where everyone should have had the chance to update this to the new setting. --- src/station.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/station.c b/src/station.c index 83c21b66..32711cad 100644 --- a/src/station.c +++ b/src/station.c @@ -3926,15 +3926,8 @@ static int station_init(void) if (!l_settings_get_bool(iwd_get_config(), "General", "EnableNetworkConfiguration", - &netconfig_enabled)) { - if (l_settings_get_bool(iwd_get_config(), "General", - "enable_network_config", &netconfig_enabled)) - l_warn("[General].enable_network_config is deprecated," - " use [General].EnableNetworkConfiguration"); - else netconfig_enabled = false; - } if (!netconfig_enabled) l_info("station: Network configuration is disabled.");