diff options
-rw-r--r-- | src/modules/m_spanningtree.cpp | 3 |
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); |