diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/inspircd_io.cpp | 13 | ||||
-rw-r--r-- | src/wildcard.cpp | 2 |
2 files changed, 13 insertions, 2 deletions
diff --git a/src/inspircd_io.cpp b/src/inspircd_io.cpp index c9475dcd7..fca22e3be 100644 --- a/src/inspircd_io.cpp +++ b/src/inspircd_io.cpp @@ -125,6 +125,19 @@ int DaemonSeed (void) freopen("/dev/null","w",stderr); setpriority(PRIO_PROCESS,(int)getpid(),15); /* ircd sets to low process priority so it doesnt hog the box */ + + rlimit rl; + if (getrlimit(RLIMIT_CORE, &rl) == -1) + { + log(DEFAULT,"Failed to getrlimit()!"); + return(FALSE); + } + else + { + rl.rlim_cur = rl.rlim_max; + if (setrlimit(RLIMIT_CORE, &rl) == -1) + log(DEFAULT,"setrlimit() failed, cannot increase coredump size."); + } return (TRUE); } diff --git a/src/wildcard.cpp b/src/wildcard.cpp index 47fbaf002..123abc500 100644 --- a/src/wildcard.cpp +++ b/src/wildcard.cpp @@ -105,10 +105,8 @@ bool match(const char* literal, const char* mask) log(DEBUG,"Match '%s' to '%s'",L,M); if ((!strchr(M,'*')) && (!strchr(M,'?'))) { - log(DEBUG,"Short circuiting literal"); if (!strcasecmp(L,M)) { - log(DEBUG,"Literal match"); return true; } } |