diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-05-17 18:13:45 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-05-17 18:13:45 +0200 |
commit | 33137bba446212f89f7b94f50ace20db19b6d009 (patch) | |
tree | 525dcd06178f675011ad49a2f68da5a48c9a4d8c /src/server.cpp | |
parent | c715182bf86532d767c939a344bd4f304d25df09 (diff) |
Move InspIRCd::SendError() to cmd_die
Fix multiple ERROR messages being sent to unregistered users by removing the "Exiting with status..." message
Diffstat (limited to 'src/server.cpp')
-rw-r--r-- | src/server.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/server.cpp b/src/server.cpp index 42dce1372..191a3d30f 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -46,7 +46,6 @@ void InspIRCd::Exit(int status) #ifdef _WIN32 SetServiceStopped(status); #endif - this->SendError("Exiting with status " + ConvToStr(status) + " (" + std::string(ExitCodes[status]) + ")"); this->Cleanup(); ServerInstance = NULL; delete this; |