diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-10-17 20:39:15 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-10-17 20:39:15 +0000 |
commit | 9a073152f429803dcabe01654e46dbe672054377 (patch) | |
tree | a00771ad408599b8242dac9b90494b7a245fed63 /src/modules/m_spanningtree.cpp | |
parent | 32cb484b7ab86d4bd866d50ff95875e05a9f8b0d (diff) |
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
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r-- | src/modules/m_spanningtree.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
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<std::string>::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) |