diff options
| author | 2006-02-07 16:55:02 +0000 | |
|---|---|---|
| committer | 2006-02-07 16:55:02 +0000 | |
| commit | 0ebea1150578ffbc56b438ae2f85c6dc86153ed3 (patch) | |
| tree | 27b6cffd10b89230d9f6946dfa1b5ff93413b147 /src/modules/m_spanningtree.cpp | |
| parent | Tidying of snotices (adding '***' to start of WriteOpers texts) (diff) | |
| download | inspircd++-0ebea1150578ffbc56b438ae2f85c6dc86153ed3.tar.gz inspircd++-0ebea1150578ffbc56b438ae2f85c6dc86153ed3.tar.bz2 inspircd++-0ebea1150578ffbc56b438ae2f85c6dc86153ed3.zip | |
Slightly more efficient write buffers
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3125 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
| -rw-r--r-- | src/modules/m_spanningtree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 29146b1ea..9d29ae6ca 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -1300,7 +1300,7 @@ class TreeSocket : public InspSocket /* Check that the data read is a valid pointer and it has some content */ if (data && *data) { - this->in_buffer += data; + this->in_buffer.append(data); /* While there is at least one new line in the buffer, * do something useful (we hope!) with it. */ |
