mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
treewide: Use CamelCase for [Scan] settings
This commit is contained in:
parent
3a0c70210d
commit
e540978633
@ -1,2 +1,2 @@
|
||||
[Scan]
|
||||
disable_mac_address_randomization=true
|
||||
DisableMacAddressRandomization=true
|
||||
|
@ -1,2 +1,2 @@
|
||||
[Scan]
|
||||
disable_mac_address_randomization=true
|
||||
DisableMacAddressRandomization=true
|
||||
|
@ -1,2 +1,2 @@
|
||||
[Scan]
|
||||
disable_mac_address_randomization=true
|
||||
DisableMacAddressRandomization=true
|
||||
|
@ -1,2 +1,2 @@
|
||||
[Scan]
|
||||
disable_mac_address_randomization=true
|
||||
DisableMacAddressRandomization=true
|
||||
|
@ -1,2 +1,2 @@
|
||||
[Scan]
|
||||
disable_mac_address_randomization=true
|
||||
DisableMacAddressRandomization=true
|
||||
|
@ -1,2 +1,2 @@
|
||||
[Scan]
|
||||
disable_mac_address_randomization=true
|
||||
DisableMacAddressRandomization=true
|
||||
|
@ -1,2 +1,2 @@
|
||||
[Scan]
|
||||
disable_mac_address_randomization=true
|
||||
DisableMacAddressRandomization=true
|
||||
|
@ -1,2 +1,2 @@
|
||||
[Scan]
|
||||
disable_mac_address_randomization=true
|
||||
DisableMacAddressRandomization=true
|
||||
|
@ -3,4 +3,4 @@
|
||||
# Discovery of the hidden networks with randomization flag set works with real
|
||||
# hardware, but fails when used in simulated environment with mac80211_hwsim.
|
||||
# Disable MAC randomization for the tests with hidden networks.
|
||||
disable_mac_address_randomization=true
|
||||
DisableMacAddressRandomization=true
|
||||
|
@ -1,2 +1,2 @@
|
||||
[Scan]
|
||||
disable_mac_address_randomization=true
|
||||
DisableMacAddressRandomization=true
|
||||
|
@ -3,4 +3,4 @@
|
||||
# Discovery of the hidden networks with randomization flag set works with real
|
||||
# hardware, but fails when used in simulated environment with mac80211_hwsim.
|
||||
# Disable MAC randomization for the tests with hidden networks.
|
||||
disable_mac_address_randomization=true
|
||||
DisableMacAddressRandomization=true
|
||||
|
@ -271,7 +271,7 @@ static bool scan_mac_address_randomization_is_disabled(void)
|
||||
bool disabled;
|
||||
|
||||
if (!l_settings_get_bool(config, "Scan",
|
||||
"disable_mac_address_randomization",
|
||||
"DisableMacAddressRandomization",
|
||||
&disabled))
|
||||
return false;
|
||||
|
||||
@ -641,7 +641,7 @@ static bool scan_periodic_is_disabled(void)
|
||||
const struct l_settings *config = iwd_get_config();
|
||||
bool disabled;
|
||||
|
||||
if (!l_settings_get_bool(config, "Scan", "disable_periodic_scan",
|
||||
if (!l_settings_get_bool(config, "Scan", "DisablePeriodicScan",
|
||||
&disabled))
|
||||
return false;
|
||||
|
||||
|
@ -1975,7 +1975,7 @@ static bool station_cannot_roam(struct station *station)
|
||||
const struct l_settings *config = iwd_get_config();
|
||||
bool disabled;
|
||||
|
||||
if (!l_settings_get_bool(config, "Scan", "disable_roaming_scan",
|
||||
if (!l_settings_get_bool(config, "Scan", "DisableRoamingScan",
|
||||
&disabled))
|
||||
disabled = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user