]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/wildcard.cpp
Fix server prefix on JOIN.
[user/henk/code/inspircd.git] / src / wildcard.cpp
index 4032809965ea91007bb1b1e312563b0be3b9ad2f..f99054939056b230550e27aebf3dffc45f8c9292 100644 (file)
@@ -2,24 +2,18 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
-using namespace std;
-
 #include <string>
-#include "inspircd_config.h"
 #include "inspircd.h"
-#include "helperfuncs.h"
+#include "hashcomp.h"
 #include "inspstring.h"
 
 using irc::sockets::MatchCIDR;
@@ -36,10 +30,9 @@ using irc::sockets::MatchCIDR;
 
 bool match(const char *str, const char *mask)
 {
-       unsigned char *cp, *mp;
+       unsigned char *cp = NULL, *mp = NULL;
        unsigned char* string = (unsigned char*)str;
        unsigned char* wild = (unsigned char*)mask;
-       extern char lowermap[255];
 
        while ((*string) && (*wild != '*'))
        {