diff options
author | Dan Winship <danw@gnome.org> | 2014-07-02 14:25:43 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2014-09-04 09:21:04 -0400 |
commit | 20dc44bda9e07222e46675507731b1532b4b20f2 (patch) | |
tree | 963c8c14cec3d9a4307f1d5e65bc80e8e27d3863 /libnm/nm-access-point.h | |
parent | 4eb04dbcf81b231193704573f685c4055eefed79 (diff) | |
download | NetworkManager-20dc44bda9e07222e46675507731b1532b4b20f2.tar.gz |
libnm: drop NM_TYPE_SSID, use G_TYPE_BYTES
Make NMAccessPoint:ssid be G_TYPE_BYTES and update the corresponding
APIs accordingly.
Diffstat (limited to 'libnm/nm-access-point.h')
-rw-r--r-- | libnm/nm-access-point.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnm/nm-access-point.h b/libnm/nm-access-point.h index 1792db4428..1062388d09 100644 --- a/libnm/nm-access-point.h +++ b/libnm/nm-access-point.h @@ -71,7 +71,7 @@ GType nm_access_point_get_type (void); NM80211ApFlags nm_access_point_get_flags (NMAccessPoint *ap); NM80211ApSecurityFlags nm_access_point_get_wpa_flags (NMAccessPoint *ap); NM80211ApSecurityFlags nm_access_point_get_rsn_flags (NMAccessPoint *ap); -const GByteArray * nm_access_point_get_ssid (NMAccessPoint *ap); +GBytes * nm_access_point_get_ssid (NMAccessPoint *ap); const char * nm_access_point_get_bssid (NMAccessPoint *ap); guint32 nm_access_point_get_frequency (NMAccessPoint *ap); NM80211Mode nm_access_point_get_mode (NMAccessPoint *ap); |