diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-11 12:18:03 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-11 12:18:03 +0000 |
commit | 5c328da92fbf7a7e8b26ded2df085d3cf49f67f5 (patch) | |
tree | ea2e58b4852df608d9958394e23309a7495ebd3c /src/wildcard.cpp | |
parent | b193391141af466ec36bb5b1a30650eb67cccb0f (diff) |
Added getrlimit/setrlimit to set process limits to allow a core dump
Removed some logging from wildcard.cpp
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1040 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/wildcard.cpp')
-rw-r--r-- | src/wildcard.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
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; } } |