summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2014-06-07 11:01:02 +0200
committerThomas Haller <thaller@redhat.com>2014-06-07 11:19:02 +0200
commitb6337115726b3f58ddb77e5c231c11ec162809f7 (patch)
tree339b8904dbbdae917e2d6676ac1d697711d58eb4
parent8366d7cd1be1067ece6600dbcf47fd35a9327da2 (diff)
downloadNetworkManager-b6337115726b3f58ddb77e5c231c11ec162809f7.tar.gz
libnm-glib: don't use deprecated nm_access_point_get_hw_address()
nm_access_point_get_hw_address() is already deprecated since pre-0.9.0-beta3 (f30e15a04d56a922f50e20c3c155a452d635a187). However, it also is defined as NM_DEPRECATED_IN_0_9_10, because there are no deprecated macros for previous version. Signed-off-by: Thomas Haller <thaller@redhat.com>
-rw-r--r--examples/C/glib/get-ap-info-libnm-glib.c2
-rw-r--r--libnm-glib/libnm-glib-test.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/C/glib/get-ap-info-libnm-glib.c b/examples/C/glib/get-ap-info-libnm-glib.c
index f38ca9109f..1ad58124b5 100644
--- a/examples/C/glib/get-ap-info-libnm-glib.c
+++ b/examples/C/glib/get-ap-info-libnm-glib.c
@@ -96,7 +96,7 @@ show_access_point_info (NMAccessPoint *ap)
wpa_flags = nm_access_point_get_wpa_flags (ap);
rsn_flags = nm_access_point_get_rsn_flags (ap);
ssid = nm_access_point_get_ssid (ap);
- hwaddr = nm_access_point_get_hw_address (ap);
+ hwaddr = nm_access_point_get_bssid (ap);
freq = nm_access_point_get_frequency (ap);
mode = nm_access_point_get_mode (ap);
bitrate = nm_access_point_get_max_bitrate (ap);
diff --git a/libnm-glib/libnm-glib-test.c b/libnm-glib/libnm-glib-test.c
index 36520f50c3..e38457f06b 100644
--- a/libnm-glib/libnm-glib-test.c
+++ b/libnm-glib/libnm-glib-test.c
@@ -173,7 +173,7 @@ dump_access_point (NMAccessPoint *ap)
g_print ("\tSsid: %s\n",
ssid ? nm_utils_escape_ssid (ssid->data, ssid->len) : "(none)");
- str = nm_access_point_get_hw_address (ap);
+ str = nm_access_point_get_bssid (ap);
g_print ("\tMAC Address: %s\n", str);
g_print ("\tFlags: 0x%X\n", nm_access_point_get_flags (ap));