summaryrefslogtreecommitdiff
path: root/Servers/LookupServer/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Servers/LookupServer/main.cpp')
-rw-r--r--Servers/LookupServer/main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Servers/LookupServer/main.cpp b/Servers/LookupServer/main.cpp
index 09637982b3..2deaf273ea 100644
--- a/Servers/LookupServer/main.cpp
+++ b/Servers/LookupServer/main.cpp
@@ -13,6 +13,7 @@
#include <AK/BufferStream.h>
#include "DNSPacket.h"
#include "DNSRecord.h"
+#include <LibCore/CConfigFile.h>
#define T_A 1
#define T_NS 2
@@ -35,8 +36,8 @@ int main(int argc, char**argv)
auto config = CConfigFile::get_for_system("LookupServer");
dbgprintf("LookupServer: Using network config file at %s.\n",
- config->file_name().view().characters());
- const String& DNS_IP = config->read_entry("DNS", "IPAddress", "127.0.0.53");
+ config->file_name().characters());
+ auto DNS_IP = config->read_entry("DNS", "IPAddress", "127.0.0.53");
HashMap<String, IPv4Address> dns_cache;