summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-06 16:51:35 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-06 16:51:35 +0000
commit9a778f76191249fd9522ecbda1c259e9f4a3aeb7 (patch)
tree0c18715a4ceff81a7e0795e6008ca3bd864f301a /src
parent55e69a4be843ce7611412be44453810dec2dd82a (diff)
Added comments
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2232 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_spanningtree.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index 1554b1d88..f6762b9a0 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -1584,6 +1584,9 @@ class TreeSocket : public InspSocket
command = "MODE";
}
std::string target = "";
+ /* Yes, know, this is a mess. Its reasonably fast though as we're
+ * working with std::string here.
+ */
if ((command == "NICK") && (params.size() > 1))
{
return this->IntroduceClient(prefix,params);