]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/wildcard.cpp
Added getrlimit/setrlimit to set process limits to allow a core dump
[user/henk/code/inspircd.git] / src / wildcard.cpp
index 47fbaf0024db42902082b2f9373a11956c2533e7..123abc500bf85fa81991f9db42458ef67508833b 100644 (file)
@@ -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;
                }
        }