summaryrefslogtreecommitdiffstats
path: root/src/net/80211
diff options
context:
space:
mode:
authorMichael Brown2011-03-23 22:21:12 +0100
committerMichael Brown2011-03-23 22:21:12 +0100
commit02a6f46c0984be8818db061210b61295d9c3e245 (patch)
treeba918d5e2ad2f1bd171ee7079aadba007dcccc0e /src/net/80211
parent[settings] Avoid memory leak when unregistering autovivified settings blocks (diff)
downloadipxe-02a6f46c0984be8818db061210b61295d9c3e245.tar.gz
ipxe-02a6f46c0984be8818db061210b61295d9c3e245.tar.xz
ipxe-02a6f46c0984be8818db061210b61295d9c3e245.zip
[settings] Match terminology in online documentation
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/net/80211')
-rw-r--r--src/net/80211/net80211.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/80211/net80211.c b/src/net/80211/net80211.c
index 3bbca197..f5ab65f0 100644
--- a/src/net/80211/net80211.c
+++ b/src/net/80211/net80211.c
@@ -204,7 +204,7 @@ struct settings_applicator net80211_applicator __settings_applicator = {
*/
struct setting net80211_ssid_setting __setting ( SETTING_NETDEV_EXTRA ) = {
.name = "ssid",
- .description = "802.11 SSID (network name)",
+ .description = "Wireless SSID",
.type = &setting_type_string,
.tag = NET80211_SETTING_TAG_SSID,
};
@@ -217,7 +217,7 @@ struct setting net80211_ssid_setting __setting ( SETTING_NETDEV_EXTRA ) = {
*/
struct setting net80211_active_setting __setting ( SETTING_NETDEV_EXTRA ) = {
.name = "active-scan",
- .description = "Use an active scan during 802.11 association",
+ .description = "Actively scan for wireless networks",
.type = &setting_type_int8,
.tag = NET80211_SETTING_TAG_ACTIVE_SCAN,
};
@@ -230,7 +230,7 @@ struct setting net80211_active_setting __setting ( SETTING_NETDEV_EXTRA ) = {
*/
struct setting net80211_key_setting __setting ( SETTING_NETDEV_EXTRA ) = {
.name = "key",
- .description = "Encryption key for protected 802.11 networks",
+ .description = "Wireless encryption key",
.type = &setting_type_string,
.tag = NET80211_SETTING_TAG_KEY,
};