diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-26 23:22:07 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-26 23:22:07 +0000 |
commit | b7c16f1ebc0809bb9f85573a37c6bb11f6854aca (patch) | |
tree | 14cfc9a7ab64ed8e7b2a083a0cee015bbd4bc95f /src/modules | |
parent | 5c731e5c99cc4a60d3918260acb8d83a35077e3e (diff) |
That's enough tweaks for now
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3357 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_spanningtree.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
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 == ' ') { |