summaryrefslogtreecommitdiffstats
path: root/netwerk/system
diff options
context:
space:
mode:
Diffstat (limited to 'netwerk/system')
-rw-r--r--netwerk/system/android/nsAndroidNetworkLinkService.cpp1
-rw-r--r--netwerk/system/linux/nsNetworkLinkService.cpp1
-rw-r--r--netwerk/system/win32/nsNotifyAddrListener.cpp2
3 files changed, 3 insertions, 1 deletions
diff --git a/netwerk/system/android/nsAndroidNetworkLinkService.cpp b/netwerk/system/android/nsAndroidNetworkLinkService.cpp
index 850ac5b565..a3d0328d8b 100644
--- a/netwerk/system/android/nsAndroidNetworkLinkService.cpp
+++ b/netwerk/system/android/nsAndroidNetworkLinkService.cpp
@@ -9,6 +9,7 @@
#include "nsIObserverService.h"
#include "mozilla/StaticPrefs_network.h"
+#include "mozilla/IntegerPrintfMacros.h"
#include "mozilla/Services.h"
#include "mozilla/Logging.h"
diff --git a/netwerk/system/linux/nsNetworkLinkService.cpp b/netwerk/system/linux/nsNetworkLinkService.cpp
index 363b058eed..59894ba1fa 100644
--- a/netwerk/system/linux/nsNetworkLinkService.cpp
+++ b/netwerk/system/linux/nsNetworkLinkService.cpp
@@ -8,6 +8,7 @@
#include "nsNetworkLinkService.h"
#include "nsString.h"
#include "mozilla/Logging.h"
+#include "mozilla/IntegerPrintfMacros.h"
#include "nsNetAddr.h"
#include "mozilla/StaticPrefs_network.h"
diff --git a/netwerk/system/win32/nsNotifyAddrListener.cpp b/netwerk/system/win32/nsNotifyAddrListener.cpp
index a64206fbc6..6174754c8c 100644
--- a/netwerk/system/win32/nsNotifyAddrListener.cpp
+++ b/netwerk/system/win32/nsNotifyAddrListener.cpp
@@ -600,7 +600,7 @@ nsNotifyAddrListener::CheckAdaptersAddresses(void) {
list.StripWhitespace();
for (const nsACString& suffix : list.Split(',')) {
LOG((" appending DNS suffix from registry: %s\n",
- suffix.BeginReading()));
+ PromiseFlatCString(suffix).get()));
if (!suffix.IsEmpty()) {
dnsSuffixList.AppendElement(suffix);
}