]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fixed loss of padding spaces in privmsgs, etc
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 1 Dec 2005 18:41:24 +0000 (18:41 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 1 Dec 2005 18:41:24 +0000 (18:41 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2082 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/m_spanningtree.cpp

index 03a03cf0f1692a27f6a80a4739a4ea0677eed514..5263f3ff806f0a0064c43a337b7233462ad40136 100644 (file)
@@ -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;
        }