aboutsummaryrefslogtreecommitdiff
path: root/src/server.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-10-17 14:00:46 +0100
committerGravatar Sadie Powell2023-10-17 14:00:46 +0100
commitec65aa82950049a42fb409b8adb0f6980d3bf781 (patch)
treefafdae85fbcfeec1d63a4a0b087238780176f2b4 /src/server.cpp
parentFix exiting with a success when the child dies before the parent. (diff)
QuickExit is obsolete again so we can remove it again.
Diffstat (limited to 'src/server.cpp')
-rw-r--r--src/server.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/server.cpp b/src/server.cpp
index 1eba75e92..4ea6c69d1 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -57,11 +57,6 @@ void InspIRCd::Exit(int status)
this->Cleanup();
ServerInstance = nullptr;
delete this;
- QuickExit(status);
-}
-
-void InspIRCd::QuickExit(int status)
-{
exit(status);
}