summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/users.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp
index 6efbee651..cdacdc5c2 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -1096,7 +1096,7 @@ const char* User::GetIPString(bool translate4in6)
{
strlcpy(&temp[1], buf, sizeof(temp) - 1);
*temp = '0';
- if (translate4in6 && !strncmp(GetIPString(), "0::ffff:", 8))
+ if (translate4in6 && !strncmp(temp, "0::ffff:", 8))
{
this->cachedip = temp + 8;
return temp + 8;