diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-14 20:53:44 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-14 20:53:44 +0000 |
commit | 71532e29af6d0be878596e47dbd66a6ce573893d (patch) | |
tree | 51b4ebac61871aa04c3b01fcba3c5520c61965a7 /src/server.cpp | |
parent | e4aa8c95131f8b7bb3b6ff5460809ab3a6b7f588 (diff) |
Fix crashing on startup if there was an error condition in win32
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8193 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/server.cpp')
-rw-r--r-- | src/server.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/server.cpp b/src/server.cpp index 2722c6831..4568c43fd 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -31,6 +31,7 @@ void InspIRCd::SignalHandler(int signal) void InspIRCd::Exit(int status) { + printf("exit with status %d\n", status); #ifdef WINDOWS delete WindowsIPC; #endif @@ -38,8 +39,9 @@ void InspIRCd::Exit(int status) { this->SendError("Exiting with status " + ConvToStr(status) + " (" + std::string(ExitCodes[status]) + ")"); this->Cleanup(); - } - exit (status); + } + printf("Exit done.\n"); + exit (status); } void InspIRCd::Rehash() |