3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-12-18 09:12:43 +01:00

manager: deprecate UseDefaultInterface

This commit is contained in:
James Prestwood 2024-08-27 07:18:10 -07:00 committed by Denis Kenzior
parent d223f49fbc
commit 5c7777ff0f

View File

@ -894,8 +894,11 @@ static int manager_init(void)
}
if (!l_settings_get_bool(config, "General",
"UseDefaultInterface", &use_default))
"UseDefaultInterface", &use_default)) {
l_warn("[General].UseDefaultInterface is deprecated, please "
"use [DriverQuirks].DefaultInterface instead");
use_default = false;
}
return 0;