summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-26 23:22:07 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-26 23:22:07 +0000
commitb7c16f1ebc0809bb9f85573a37c6bb11f6854aca (patch)
tree14cfc9a7ab64ed8e7b2a083a0cee015bbd4bc95f
parent5c731e5c99cc4a60d3918260acb8d83a35077e3e (diff)
That's enough tweaks for now
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3357 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/m_spanningtree.cpp8
-rw-r--r--src/socket.cpp4
2 files changed, 7 insertions, 5 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 == ' ')
{
diff --git a/src/socket.cpp b/src/socket.cpp
index e240d1208..4c03c933d 100644
--- a/src/socket.cpp
+++ b/src/socket.cpp
@@ -261,9 +261,9 @@ void InspSocket::FlushWriteBuffer()
{
if ((this->fd > -1) && (this->state == I_CONNECTED))
{
- int result = 0;
+ int result = 0, v = 0;
const char* n = Buffer.c_str();
- int v = Buffer.length();
+ v = Buffer.length();
if (v > 0)
{
result = write(this->fd,n,v);