aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree.cpp
diff options
context:
space:
mode:
authorGravatar w00t2006-10-26 13:59:00 +0000
committerGravatar w00t2006-10-26 13:59:00 +0000
commit9453f2ef368d298b329bec9a0d7cf94ff755d9eb (patch)
tree18f65078350d19d6fd576a01dcceca22df12b8f3 /src/modules/m_spanningtree.cpp
parentHopefully fix override notices on channel bans, also make the override notice... (diff)
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
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r--src/modules/m_spanningtree.cpp4
1 files changed, 3 insertions, 1 deletions
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)