summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-28 01:03:42 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-28 01:03:42 +0000
commit7417ff9a5fd889be887ad9e8c63fb36168416815 (patch)
tree3311fcae1125f2b92d1f56547ec1ed5c14f7306a /src
parentbfa2c221e3e87d4d15fddc64467256019761d940 (diff)
Blah (ive committed so many times to fix this bug its not worth commenting here)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1232 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/inspircd.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 1a9c3fbc7..e2adcce16 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -3306,6 +3306,8 @@ void DoSync(serverrec* serv, char* tcp_host)
serv->SendPacket(data,tcp_host);
// send users and channels
+ NetSendMyRoutingTable();
+
for (int j = 0; j < 32; j++)
{
if (me[j] != NULL)
@@ -3316,7 +3318,6 @@ void DoSync(serverrec* serv, char* tcp_host)
{
snprintf(data,MAXBUF,"H %s",me[j]->connectors[k].GetServerName().c_str());
serv->SendPacket(data,tcp_host);
- NetSendMyRoutingTable();
}
}
}