summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-04 19:17:26 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-04 19:17:26 +0000
commite3f853d14b203fa05f61c5129b4776b4acc9066e (patch)
treea7a282ffaa55adc2b29636fc69b380930510ab82 /src/modules/m_spanningtree.cpp
parent71a86d7d6b57fe5ca2a8b1478892ddb9832e6375 (diff)
Unknown command error now tells the opposite server WHICH command is bad so that people dont have to go sleuthing to find it
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3453 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r--src/modules/m_spanningtree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index 966cb3f1d..25ff9befc 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -2533,7 +2533,7 @@ class TreeSocket : public InspSocket
}
if (!Srv->CallCommandHandler(command.c_str(), strparams, params.size(), who))
{
- this->WriteLine("ERROR :Unrecognised command -- possibly loaded mismatched modules");
+ this->WriteLine("ERROR :Unrecognised command '"+command+"' -- possibly loaded mismatched modules");
return false;
}
}