From: brain Date: Thu, 1 Dec 2005 18:41:24 +0000 (+0000) Subject: Fixed loss of padding spaces in privmsgs, etc X-Git-Tag: v2.0.23~9942 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=ad9cd7091aaef77261888ccb73b28232d9a58b5e;p=user%2Fhenk%2Fcode%2Finspircd.git Fixed loss of padding spaces in privmsgs, etc git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2082 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 03a03cf0f..5263f3ff8 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -856,8 +856,8 @@ class TreeSocket : public InspSocket while (!s.eof()) { s >> param; - if ((param != "") && (param != "\n")) - { + //if ((param != "") && (param != "\n")) + //{ if ((param.c_str()[0] == ':') && (item)) { char* str = (char*)param.c_str(); @@ -876,7 +876,7 @@ class TreeSocket : public InspSocket } item++; n.push_back(param); - } + //} } return n; }