treewide: Rename EAP mtu key to MTU

This commit is contained in:
Denis Kenzior 2019-10-24 13:51:20 -05:00
parent 1ddd047a73
commit 19a85a85e7
6 changed files with 6 additions and 6 deletions

View File

@ -1,2 +1,2 @@
[EAP]
mtu=100
MTU=100

View File

@ -1,2 +1,2 @@
[EAP]
mtu=40
MTU=40

View File

@ -1,2 +1,2 @@
[EAP]
mtu=100
MTU=100

View File

@ -1,2 +1,2 @@
[EAP]
mtu=100
MTU=100

View File

@ -1,2 +1,2 @@
[EAP]
mtu=100
MTU=100

View File

@ -679,7 +679,7 @@ int eap_unregister_method(struct eap_method *method)
void __eap_set_config(struct l_settings *config)
{
if (!l_settings_get_uint(config, "EAP", "mtu", &default_mtu))
if (!l_settings_get_uint(config, "EAP", "MTU", &default_mtu))
default_mtu = 1400; /* on WiFi the real MTU is around 2304 */
}