summaryrefslogtreecommitdiffstats
path: root/src/network/kernel/qhostinfo_unix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/kernel/qhostinfo_unix.cpp')
-rw-r--r--src/network/kernel/qhostinfo_unix.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/kernel/qhostinfo_unix.cpp b/src/network/kernel/qhostinfo_unix.cpp
index 331c5fbf455..42194fb8b31 100644
--- a/src/network/kernel/qhostinfo_unix.cpp
+++ b/src/network/kernel/qhostinfo_unix.cpp
@@ -49,7 +49,7 @@ static void maybeRefreshResolver()
return;
#endif
-#if QT_CONFIG(res_ninit)
+#if QT_CONFIG(libresolv)
// OSes known or thought to reach here: AIX, NetBSD, Solaris,
// Linux with MUSL (though res_init() does nothing and is unnecessary)
@@ -92,7 +92,7 @@ QHostInfo QHostInfoAgent::fromName(const QString &hostName)
QString QHostInfo::localDomainName()
{
-#if QT_CONFIG(res_ninit)
+#if QT_CONFIG(libresolv)
auto domainNameFromRes = [](res_state r) {
QString domainName;
if (r->defdname[0])
@@ -111,7 +111,7 @@ QString QHostInfo::localDomainName()
// using thread-unsafe version
maybeRefreshResolver();
return domainNameFromRes(&_res);
-#endif // !QT_CONFIG(res_ninit)
+#endif // !QT_CONFIG(libresolv)
// nothing worked, try doing it by ourselves:
QFile resolvconf;