diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-09-20 23:29:29 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-09-29 08:38:59 +0200 |
commit | 77f75f4fffd9f05224d7c5dca70560274380f2eb (patch) | |
tree | 1904d13fdcd67d956bd904f36d755973f1ab493d /src/shared/net-condition.h | |
parent | wifi-util: move, rename, and expose wifi_iftype_to_string() (diff) | |
download | systemd-77f75f4fffd9f05224d7c5dca70560274380f2eb.tar.xz systemd-77f75f4fffd9f05224d7c5dca70560274380f2eb.zip |
network: rename wifi_iftype -> wlan_iftype
Diffstat (limited to 'src/shared/net-condition.h')
-rw-r--r-- | src/shared/net-condition.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/net-condition.h b/src/shared/net-condition.h index d61537e5e3..4f8e30a271 100644 --- a/src/shared/net-condition.h +++ b/src/shared/net-condition.h @@ -18,7 +18,7 @@ typedef struct NetMatch { char **iftype; char **ifname; char **property; - char **wifi_iftype; + char **wlan_iftype; char **ssid; Set *bssid; } NetMatch; @@ -35,7 +35,7 @@ int net_match_config( unsigned short iftype, const char *ifname, char * const *alternative_names, - enum nl80211_iftype wifi_iftype, + enum nl80211_iftype wlan_iftype, const char *ssid, const struct ether_addr *bssid); |