summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-11 17:33:11 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-11 17:33:11 +0000
commit26704bd222c52995bd1d23be50ac40022f88d57a (patch)
treec36fc2800df966dc72be7b4b106a51d5c9fbccb2 /src/modules/m_spanningtree.cpp
parentda41e3c11a2c1f1686414740af936e77a101663f (diff)
Fix for multi-param PUSH
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3155 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r--src/modules/m_spanningtree.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index 6b1cfb7d3..d2e583d39 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -1679,12 +1679,13 @@ class TreeSocket : public InspSocket
}
else
{
- log(DEBUG,"PUSH from non-ulined server dropped into the bit-bucket: %s %s %s",prefix.c_str(),params[0].c_str(),params[1].c_str());
+ log(DEBUG,"PUSH from non-ulined server dropped into the bit-bucket: :%s PUSH %s :%s",prefix.c_str(),params[0].c_str(),params[1].c_str());
}
}
else
{
// continue the raw onwards
+ params[1] = ":" + params[1];
DoOneToOne(prefix,"PUSH",params,u->server);
}
return true;