You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
2.0 KiB
37 lines
2.0 KiB
6 years ago
|
From acb43106a919affe65eb736ebc798390396913cc Mon Sep 17 00:00:00 2001
|
||
|
From: Beniamino Galvani <bgalvani@redhat.com>
|
||
|
Date: Fri, 7 Sep 2018 09:33:57 +0200
|
||
|
Subject: [PATCH] core: fix wireless bitrate property name on D-Bus
|
||
|
|
||
|
In commit 297d4985abcc ("core/dbus: rework D-Bus implementation to use
|
||
|
lower layer GDBusConnection API") the Device.Wireless 'Bitrate'
|
||
|
property on D-Bus was accidentally changed to 'BitRate'. Revert the
|
||
|
old name.
|
||
|
|
||
|
Reported-by: Joseph Conley <joseph.j.conley@gmail.com>
|
||
|
Fixes: 297d4985abcc7b571b8c090ee90622357fc60e16
|
||
|
|
||
|
https://mail.gnome.org/archives/networkmanager-list/2018-September/msg00004.html
|
||
|
(cherry picked from commit c882633d48ad70d5c92ce0566a0f46dcbb5c51b3)
|
||
|
(cherry picked from commit 3a2c6f81f6b0a8dd38d45aa89fa7d6d1f897f149)
|
||
|
---
|
||
|
src/devices/wifi/nm-wifi-common.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/devices/wifi/nm-wifi-common.c b/src/devices/wifi/nm-wifi-common.c
|
||
|
index 8e079d115..c95620e7f 100644
|
||
|
--- a/src/devices/wifi/nm-wifi-common.c
|
||
|
+++ b/src/devices/wifi/nm-wifi-common.c
|
||
|
@@ -196,7 +196,7 @@ const NMDBusInterfaceInfoExtended nm_interface_info_device_wireless = {
|
||
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("HwAddress", "s", NM_DEVICE_HW_ADDRESS),
|
||
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("PermHwAddress", "s", NM_DEVICE_PERM_HW_ADDRESS),
|
||
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("Mode", "u", NM_DEVICE_WIFI_MODE),
|
||
|
- NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("BitRate", "u", NM_DEVICE_WIFI_BITRATE),
|
||
|
+ NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("Bitrate", "u", NM_DEVICE_WIFI_BITRATE),
|
||
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("AccessPoints", "ao", NM_DEVICE_WIFI_ACCESS_POINTS),
|
||
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("ActiveAccessPoint", "o", NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT),
|
||
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("WirelessCapabilities", "u", NM_DEVICE_WIFI_CAPABILITIES),
|
||
|
--
|
||
|
2.17.1
|
||
|
|