diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-12 01:33:13 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-12 01:33:13 +0000 |
commit | 8d278b5d9cba6c5b41477994e7a567c9218d2c3f (patch) | |
tree | 39f3561f204a504b91aed5219296f3d28597417c /src/inspircd.cpp | |
parent | c23f9303db81152ae241fca9ac3076d6ad80e874 (diff) |
Argh, i give up
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8594 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 21c97a703..923613002 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -488,9 +488,6 @@ InspIRCd::InspIRCd(int argc, char** argv) if (Config->FileErrors) { - /* One or more file download/access errors, do not - * proceed to second pass - */ for (std::map<std::string, std::istream*>::iterator x = Config->IncludedFiles.begin(); x != Config->IncludedFiles.end(); ++x) { if (!x->second) @@ -718,6 +715,7 @@ void InspIRCd::BufferedSocketCull() { for (std::map<BufferedSocket*,BufferedSocket*>::iterator x = SocketCull.begin(); x != SocketCull.end(); ++x) { + Log(DEBUG,"Cull socket"); SE->DelFd(x->second); x->second->Close(); delete x->second; |