summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-23 16:41:22 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-23 16:41:22 +0000
commitf9ef034ef59702e3d627d0077e93980e565f0ea7 (patch)
treeefb2830d2b08b0cd93e26df7ad5df8e68c36f7ca /include/inspircd.h
parentde3978c580edabe667d0845ed6027c9ff25e461b (diff)
Fix exit in wrong place, and add new exitcodes.h
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6077 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index a15c1fd68..4aa61e943 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -26,8 +26,7 @@
#include "command_parse.h"
#include "snomasks.h"
-/** Returned by some functions to indicate failure,
- * and the exit code of the program if it terminates.
+/** Returned by some functions to indicate failure.
*/
#define ERROR -1
@@ -655,6 +654,7 @@ class InspIRCd : public classbase
/** Causes the server to exit immediately
* @param The exit code to give to the operating system
+ * (See the ExitStatus enum for valid values)
*/
static void Exit(int status);