diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-20 18:46:32 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-20 18:46:32 +0000 |
commit | 7b075853c4b31b22cfb4c67ce415674afd67d499 (patch) | |
tree | 1dfe25340a35dfe2ad51dc8a6af901b154597cfa /src | |
parent | 22d12b9aac80ba49fc6dfdfeeb39e218e46f9379 (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')
-rw-r--r-- | src/inspircd.cpp | 6 |
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> |