From b7c16f1ebc0809bb9f85573a37c6bb11f6854aca Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 26 Feb 2006 23:22:07 +0000 Subject: That's enough tweaks for now git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3357 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_spanningtree.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/modules/m_spanningtree.cpp') diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index ccc5cd6dc..a28ce44cf 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -1358,8 +1358,10 @@ class TreeSocket : public InspSocket * back to the core so that a large burst is split into at least 6 sections * (possibly more) */ + std::string burst = "BURST"; + std::string endburst = "ENDBURST"; Srv->SendOpers("*** Bursting to \2"+s->GetName()+"\2."); - this->WriteLine("BURST"); + this->WriteLine(burst); ServerInstance->DoOneIteration(false); /* send our version string */ this->WriteLine(":"+Srv->GetServerName()+" VERSION :"+Srv->GetVersion()); @@ -1376,7 +1378,7 @@ class TreeSocket : public InspSocket ServerInstance->DoOneIteration(false); FOREACH_MOD(I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)TreeProtocolModule,(void*)this)); ServerInstance->DoOneIteration(false); - this->WriteLine("ENDBURST"); + this->WriteLine(endburst); Srv->SendOpers("*** Finished bursting to \2"+s->GetName()+"\2."); } @@ -2083,7 +2085,7 @@ class TreeSocket : public InspSocket int item = 0; while (!s.eof()) { - char c; + char c = 0; s.get(c); if (c == ' ') { -- cgit v1.2.3