summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Steffens <jan.steffens@gmail.com>2017-09-16 18:35:20 +0200
committerLeorize <alaviss@users.noreply.github.com>2018-05-16 16:53:12 +0700
commit713d6adc6dd72e66f3723977641ba2ee82f30658 (patch)
treef4e193b063270af908ec4e890d1963f9601baace
parent000ac0cc833c415169ed7aa8c5e3493d0d4525fd (diff)
downloadUXP-713d6adc6dd72e66f3723977641ba2ee82f30658.tar
UXP-713d6adc6dd72e66f3723977641ba2ee82f30658.tar.gz
UXP-713d6adc6dd72e66f3723977641ba2ee82f30658.tar.lz
UXP-713d6adc6dd72e66f3723977641ba2ee82f30658.tar.xz
UXP-713d6adc6dd72e66f3723977641ba2ee82f30658.zip
Bug 1314968 - Explicitly specify the AccessPoint interface name. r=kanru
The DBus specification allows passing an empty string as the interface to the org.freedesktop.DBus.Properties.GetAll call to get all properties, throwing away the namespace (interface) information. However, GDBus does not allow this. When NetworkManager moved to using GDBus, Firefox lost the ability to retrieve access points from NetworkManager. Since we're only interested in properties from the org.freedesktop.NetworkManager.AccessPoint interface, name it explicitly. This works with both the old and the new NetworkManager. MozReview-Commit-ID: Kc5HaYvwfRZ --HG-- extra : rebase_source : e1550d327e5a4ea05b8d35d98ef7b27c0add709b
-rw-r--r--netwerk/wifi/nsWifiScannerDBus.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/netwerk/wifi/nsWifiScannerDBus.cpp b/netwerk/wifi/nsWifiScannerDBus.cpp
index 182553e18..6fa0a0b02 100644
--- a/netwerk/wifi/nsWifiScannerDBus.cpp
+++ b/netwerk/wifi/nsWifiScannerDBus.cpp
@@ -62,7 +62,7 @@ nsWifiScannerDBus::SendMessage(const char* aInterface,
return NS_ERROR_FAILURE;
}
} else if (!strcmp(aFuncCall, "GetAll")) {
- const char* param = "";
+ const char* param = "org.freedesktop.NetworkManager.AccessPoint";
if (!dbus_message_iter_append_basic(&argsIter, DBUS_TYPE_STRING, &param)) {
return NS_ERROR_FAILURE;
}