summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-06-20 18:46:32 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-06-20 18:46:32 +0000
commit7b075853c4b31b22cfb4c67ce415674afd67d499 (patch)
tree1dfe25340a35dfe2ad51dc8a6af901b154597cfa /src/inspircd.cpp
parent22d12b9aac80ba49fc6dfdfeeb39e218e46f9379 (diff)
Make a comment make a bit more general sense, and indent a nested define.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7394 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index eb8894c43..08a8cda36 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -21,10 +21,12 @@
#include <sys/resource.h>
#include <dlfcn.h>
#include <getopt.h>
-/* This is just to be completely certain that the change which fixed getrusage on RH7 doesn't break anything else -- Om */
+
+/* Some systems don't define RUSAGE_SELF. This should fix them. */
#ifndef RUSAGE_SELF
-#define RUSAGE_SELF 0
+ #define RUSAGE_SELF 0
#endif
+
#endif
#include <exception>