summaryrefslogtreecommitdiff
path: root/src/wildcard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wildcard.cpp')
-rw-r--r--src/wildcard.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wildcard.cpp b/src/wildcard.cpp
index 502dc89c3..b0602c82e 100644
--- a/src/wildcard.cpp
+++ b/src/wildcard.cpp
@@ -19,7 +19,7 @@ using namespace std;
#include <string>
#include "inspircd_config.h"
#include "inspircd.h"
-
+#include "hashcomp.h"
#include "inspstring.h"
using irc::sockets::MatchCIDR;
@@ -39,7 +39,6 @@ bool match(const char *str, const char *mask)
unsigned char *cp, *mp;
unsigned char* string = (unsigned char*)str;
unsigned char* wild = (unsigned char*)mask;
- extern char lowermap[255];
while ((*string) && (*wild != '*'))
{