mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-01-02 01:02:34 +01:00
eap-gtc: Warn if deprecated setting is used
This commit is contained in:
parent
fc6cebb259
commit
c256dbfbd8
@ -109,8 +109,11 @@ static int eap_gtc_check_settings(struct l_settings *settings,
|
|||||||
"%sGTC-Secret", prefix);
|
"%sGTC-Secret", prefix);
|
||||||
password = l_settings_get_string(settings, "Security",
|
password = l_settings_get_string(settings, "Security",
|
||||||
password_key_old);
|
password_key_old);
|
||||||
if (password)
|
if (password) {
|
||||||
|
l_warn("Setting '%s' is deprecated, use '%s' instead",
|
||||||
|
password_key_old, password_key);
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
secret = l_queue_find(secrets, eap_secret_info_match,
|
secret = l_queue_find(secrets, eap_secret_info_match,
|
||||||
password_key);
|
password_key);
|
||||||
|
Loading…
Reference in New Issue
Block a user