aboutsummaryrefslogtreecommitdiffstats
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-04-02 00:26:44 +0100
committerGravatar Sadie Powell2021-04-02 00:26:44 +0100
commit131e57062109d40ef522e876e44210aa11ce8217 (patch)
tree13dfdce249c5ba52c129226ba3cc60e6dfe63160 /src/inspircd.cpp
parentAdd support for syncing metadata set on memberships. (diff)
Remove the unused ExitCodes array.
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 4104dfd6a..526514329 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -63,25 +63,6 @@ InspIRCd* ServerInstance = NULL;
*/
unsigned const char* national_case_insensitive_map = ascii_case_insensitive_map;
-
-/* Moved from exitcodes.h -- due to duplicate symbols -- Burlex
- * XXX this is a bit ugly. -- w00t
- */
-const char* ExitCodes[] =
-{
- "No error", // 0
- "DIE command", // 1
- "Config file error", // 2
- "Logfile error", // 3
- "POSIX fork failed", // 4
- "Bad commandline parameters", // 5
- "Can't write PID file", // 6
- "SocketEngine could not initialize", // 7
- "Refusing to start up as root", // 8
- "Couldn't load module on startup", // 9
- "Received SIGTERM" // 10
-};
-
namespace
{
void VoidSignalHandler(int);