diff options
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; } } |