From 9a073152f429803dcabe01654e46dbe672054377 Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 17 Oct 2006 20:39:15 +0000 Subject: Remove another 'using' for a symbol we use only once git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5491 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_spanningtree.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/modules/m_spanningtree.cpp') diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index b81e2e95a..c568bbbcc 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -29,8 +29,6 @@ #include "cull_list.h" #include "aes.h" -using irc::sockets::MatchCIDR; - /** If you make a change which breaks the protocol, increment this. * If you completely change the protocol, completely change the number. */ @@ -3444,7 +3442,7 @@ class TreeSocket : public InspSocket if (!found) { for (vector::iterator i = Utils->ValidIPs.begin(); i != Utils->ValidIPs.end(); i++) - if (MatchCIDR(ip, (*i).c_str())) + if (irc::sockets::MatchCIDR(ip, (*i).c_str())) found = true; if (!found) -- cgit v1.2.3