diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-01 15:01:32 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-01 15:01:32 +0000 |
commit | 75eb9178d5051046aa86d1115ad02c5be17b79be (patch) | |
tree | 121accd1c504fef12917b6d0bbbc9338317f0478 /src | |
parent | 55de6781e0d26c304e7d1bfa7c84698183c14228 (diff) |
Make WritePID a public function of class InspIRCd
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4097 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/configreader.cpp | 2 | ||||
-rw-r--r-- | src/inspircd.cpp | 4 |
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; |