From: brain Date: Mon, 23 Jan 2006 22:50:00 +0000 (+0000) Subject: Fixed to not display ip where not needed (breaks hidden hubs) X-Git-Tag: v2.0.23~9210 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=5f814f68ec9f6f6d1bb823c7825fb6d32d9ff263;p=user%2Fhenk%2Fcode%2Finspircd.git Fixed to not display ip where not needed (breaks hidden hubs) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2876 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index bc1cc8770..108d15c4d 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -2184,7 +2184,7 @@ class TreeSocket : public InspSocket { Squit(s,"Remote host closed the connection"); } - WriteOpers("Server '\2%s\2[%s]' closed the connection.",quitserver.c_str(),this->GetIP().c_str()); + WriteOpers("Server '\2%s\2' closed the connection.",quitserver.c_str()); } virtual int OnIncomingConnection(int newsock, char* ip)