summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/users.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/users.cpp b/src/users.cpp
index bb6b71782..a67826fe5 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -983,18 +983,16 @@ void userrec::AddClient(InspIRCd* Instance, int socket, int port, bool iscached,
long userrec::GlobalCloneCount()
{
- char u1[128] = {0};
- char u2[128] = {0};
+ char u1[128];
+ char u2[128];
long x = 0;
-
- this->GetIPString(u2);
-
+
for (user_hash::const_iterator a = ServerInstance->clientlist.begin(); a != ServerInstance->clientlist.end(); a++)
{
/* We have to match ip's as strings - we don't know what protocol
* a remote user may be using
*/
- if (strcmp(a->second->GetIPString(u1), u2) == 0)
+ if (strcmp(a->second->GetIPString(u1), this->GetIPString(u2)) == 0)
x++;
}