1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 18:36:39 +02:00

fixed a log message showing the wrong IP

This commit is contained in:
DukePyrolator
2012-12-09 14:19:30 +01:00
parent 9dec093676
commit 8d4a08ccc1
+1 -1
View File
@@ -75,8 +75,8 @@ class MyHTTPClient : public HTTPClient
if (this->header.headers.count(token))
{
Log(LOG_DEBUG, "httpd") << "m_httpd: IP for connection " << this->GetFD() << " changed to " << this->ip;
this->ip = this->header.headers[token];
Log(LOG_DEBUG, "httpd") << "m_httpd: IP for connection " << this->GetFD() << " changed to " << this->ip;
break;
}
}