diff options
-rw-r--r-- | src/modules/m_ident.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp index 2f8ac8283..821576df8 100644 --- a/src/modules/m_ident.cpp +++ b/src/modules/m_ident.cpp @@ -39,7 +39,7 @@ class RFC1413 : public InspSocket char ident_request[128]; // buffer used to make up the request string public: - RFC1413(userrec* user, int maxtime, Server* S) : InspSocket(user->host, 113, false, maxtime), Srv(S), u(user) + RFC1413(userrec* user, int maxtime, Server* S) : InspSocket((char*)inet_ntoa(user->ip4), 113, false, maxtime), Srv(S), u(user) { Srv->Log(DEBUG,"Ident: associated."); } |