diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-02 13:09:32 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-02 13:09:32 +0000 |
commit | e9f634be37458ce93782b3956550bc7cb99fc220 (patch) | |
tree | 023bb57508d64c6a2443b294a5212654b46254af /src/modules/m_spanningtree.cpp | |
parent | 7b6ca95965f5cab5e3de90145e0de51463894a92 (diff) |
Remove debug, allow empty 'final' parameter
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3424 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r-- | src/modules/m_spanningtree.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index aebcb7df3..01cf39757 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -2098,10 +2098,7 @@ class TreeSocket : public InspSocket { *pptr = 0; if (*param) - { - log(DEBUG,"Pushback(1) '%s'",param); n.push_back(param); - } *param = count = 0; pptr = param; item++; @@ -2117,7 +2114,6 @@ class TreeSocket : public InspSocket { *param = count = 0; pptr = param; - log(DEBUG,"Final param"); while (!s.eof()) { s.get(c); @@ -2128,11 +2124,7 @@ class TreeSocket : public InspSocket } } *pptr = 0; - if (*param) - { - log(DEBUG,"Pushback(2) '%s'",param); - n.push_back(param); - } + n.push_back(param); *param = count = 0; pptr = param; } @@ -2141,7 +2133,6 @@ class TreeSocket : public InspSocket *pptr = 0; if (*param) { - log(DEBUG,"Pushback(3) '%s'",param); n.push_back(param); } |