From: w00t Date: Thu, 26 Oct 2006 13:59:00 +0000 (+0000) Subject: Don't display this notice on an empty servername (which will happen if an incoming... X-Git-Tag: v2.0.23~6833 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=9453f2ef368d298b329bec9a0d7cf94ff755d9eb;p=user%2Fhenk%2Fcode%2Finspircd.git Don't display this notice on an empty servername (which will happen if an incoming connection fails), confusing. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5540 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 439947f1c..344c25df2 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -3464,7 +3464,9 @@ class TreeSocket : public InspSocket { Squit(s,"Remote host closed the connection"); } - this->Instance->SNO->WriteToSnoMask('l',"Connection to '\2%s\2' failed.",quitserver.c_str()); + + if (quitserver != "") + this->Instance->SNO->WriteToSnoMask('l',"Connection to '\2%s\2' failed.",quitserver.c_str()); } virtual int OnIncomingConnection(int newsock, char* ip)