summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-21 14:55:36 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-21 14:55:36 +0000
commit344624dd2a81691df140c9d118901804ba766590 (patch)
tree74cc7522488ab57cf5d0f738390dec4260007e29
parentfb139a504c35d26cd3b360874263bb32f917380c (diff)
Moved CAPAB
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2599 e03df62e-2008-0410-955e-edbf42e46eb7
-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 fe316977b..7a71df21a 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -610,6 +610,7 @@ class TreeSocket : public InspSocket
{
if (x->Name == this->myhost)
{
+ this->SendCapabilities();
if (x->EncryptionKey != "")
{
if (!(x->EncryptionKey.length() == 16 || x->EncryptionKey.length() == 24 || x->EncryptionKey.length() == 32))
@@ -622,7 +623,6 @@ class TreeSocket : public InspSocket
this->InitAES(x->EncryptionKey,x->Name);
}
}
- this->SendCapabilities();
/* found who we're supposed to be connecting to, send the neccessary gubbins. */
this->WriteLine("SERVER "+Srv->GetServerName()+" "+x->SendPass+" 0 :"+Srv->GetServerDescription());
return true;