diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-08 15:51:30 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-08 15:51:30 +0000 |
commit | 4f1d3a7192ea1b081b47f2ca1899aa25061b270d (patch) | |
tree | 734eb7ecc8d5aede1dbedb6324398e8b9995ebcd /src/modules/m_check.cpp | |
parent | 922d4ebf7a27a6577d6b4f91e0f42ccdfa989455 (diff) |
FindMatchingLocal/FindMatchingGlobal -> userrec::LocalCloneCount(), userrec::GlobalCloneCount()
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4794 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_check.cpp')
-rw-r--r-- | src/modules/m_check.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index a00d32b9e..0535c56ee 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -132,7 +132,7 @@ class cmd_check : public command_t * find how many connections from this user's IP -- unlike Asuka, * I define a clone as coming from the same host. --w00t */ - sprintf(ptr, "%lu ", FindMatchingGlobal(i->second)); + sprintf(ptr, "%lu ", i->second->GlobalCloneCount()); if (flags & UCMODE_OP) { |