summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/configreader.cpp2
-rw-r--r--src/inspircd.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 9f8ae0ef0..2cc1cd9c1 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -769,7 +769,7 @@ void ServerConfig::Read(bool bail, userrec* user)
delete[] data[n];
// write once here, to try it out and make sure its ok
- WritePID(Config->PID);
+ ServerInstance->WritePID(Config->PID);
log(DEFAULT,"Done reading configuration file, InspIRCd is now starting.");
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 12c935b3d..8176b8332 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -207,7 +207,7 @@ bool InspIRCd::DaemonSeed()
return true;
}
-void WritePID(const std::string &filename)
+void InspIRCd::WritePID(const std::string &filename)
{
std::ofstream outfile(filename.c_str());
if (outfile.is_open())
@@ -931,7 +931,7 @@ int InspIRCd::Run()
for (int count = 0; count < stats->BoundPortCount; count++)
SE->AddFd(openSockfd[count],true,X_LISTEN);
- WritePID(Config->PID);
+ this->WritePID(Config->PID);
/* main loop, this never returns */
expire_run = false;