summaryrefslogtreecommitdiff
path: root/libnm-util/nm-setting-wireless.c
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2013-04-29 14:48:28 -0500
committerDan Williams <dcbw@redhat.com>2013-05-03 10:31:50 -0500
commit72ea5dac336a58ebd60ebd2bd20980371f196940 (patch)
tree3434c3b4c0d7369d226af4ffe3178cc39f868daa /libnm-util/nm-setting-wireless.c
parente09550ec620518b817a101c7d2839779f1f0f3b1 (diff)
downloadNetworkManager-72ea5dac336a58ebd60ebd2bd20980371f196940.tar.gz
libnm-util: clarify WiFi setting MAC address blacklist description
Diffstat (limited to 'libnm-util/nm-setting-wireless.c')
-rw-r--r--libnm-util/nm-setting-wireless.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libnm-util/nm-setting-wireless.c b/libnm-util/nm-setting-wireless.c
index 9e09da1286..5e21d69728 100644
--- a/libnm-util/nm-setting-wireless.c
+++ b/libnm-util/nm-setting-wireless.c
@@ -1068,19 +1068,19 @@ nm_setting_wireless_class_init (NMSettingWirelessClass *setting_class)
/**
* NMSettingWireless:mac-address-blacklist:
*
- * If specified, this connection will never apply to the WiFi device
- * whose permanent MAC address matches an address in the list. Each
- * MAC address is in the standard hex-digits-and-colons notation.
- * (00:11:22:33:44:55).
+ * A list of permanent MAC addresses of Wi-Fi devices to which this
+ * connection should never apply. Each MAC address should be given in the
+ * standard hex-digits-and-colons notation (eg '00:11:22:33:44:55').
**/
g_object_class_install_property
(object_class, PROP_MAC_ADDRESS_BLACKLIST,
_nm_param_spec_specialized (NM_SETTING_WIRELESS_MAC_ADDRESS_BLACKLIST,
"MAC Address Blacklist",
- "If specified, this connection will never apply to "
- "the WiFi device whose permanent MAC address matches "
- "an address in the list. Each MAC address is in the "
- "standard hex-digits-and-colons notation (00:11:22:33:44:55).",
+ "A list of permanent MAC addresses of Wi-Fi "
+ "devices to which this connection should "
+ "never apply. Each MAC address should be "
+ "given in the standard hex-digits-and-colons "
+ "notation (eg '00:11:22:33:44:55').",
DBUS_TYPE_G_LIST_OF_STRING,
G_PARAM_READWRITE | NM_SETTING_PARAM_SERIALIZE | NM_SETTING_PARAM_FUZZY_IGNORE));