summaryrefslogtreecommitdiff
path: root/Userland/Services/LookupServer/LookupServer.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-04-29 21:46:15 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-29 22:16:18 +0200
commit7ae7170d6140f7cad730f05f84b53437058b82f4 (patch)
tree79caaefa15a1e4ae1c60def7a40425983206c281 /Userland/Services/LookupServer/LookupServer.cpp
parentdef1f1444aeee2caf6d47d0eb96a18ffc476c3f9 (diff)
downloadserenity-7ae7170d6140f7cad730f05f84b53437058b82f4.zip
Everywhere: "file name" => "filename"
Diffstat (limited to 'Userland/Services/LookupServer/LookupServer.cpp')
-rw-r--r--Userland/Services/LookupServer/LookupServer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/LookupServer/LookupServer.cpp b/Userland/Services/LookupServer/LookupServer.cpp
index 442f009059..cac9f0f28e 100644
--- a/Userland/Services/LookupServer/LookupServer.cpp
+++ b/Userland/Services/LookupServer/LookupServer.cpp
@@ -37,7 +37,7 @@ LookupServer::LookupServer()
s_the = this;
auto config = Core::ConfigFile::get_for_system("LookupServer");
- dbgln("Using network config file at {}", config->file_name());
+ dbgln("Using network config file at {}", config->filename());
m_nameservers = config->read_entry("DNS", "Nameservers", "1.1.1.1,1.0.0.1").split(',');
load_etc_hosts();