summaryrefslogtreecommitdiff
path: root/src/wildcard.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-11 12:18:03 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-11 12:18:03 +0000
commit5c328da92fbf7a7e8b26ded2df085d3cf49f67f5 (patch)
treeea2e58b4852df608d9958394e23309a7495ebd3c /src/wildcard.cpp
parentb193391141af466ec36bb5b1a30650eb67cccb0f (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.cpp2
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;
}
}