From 033640feb2f01c6d6d704b01bbafa1a98d6c2d61 Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 7 Mar 2006 23:41:45 +0000 Subject: [PATCH] w00t may want to check this works git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3536 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_check.cpp | 31 +++---------------------------- 1 file changed, 3 insertions(+), 28 deletions(-) diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index f1a160b98..aaaf10930 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -80,34 +80,9 @@ class cmd_check : public command_t } chliststr = chlist(targuser, targuser); - if (chliststr.length()) - { - if (chliststr.length() > 400) - { - /* XXX - this sucks. deal with it. */ - std::stringstream chstream(chliststr); - std::string line = ""; - std::string cname = ""; - while (!chstream.eof()) - { - chstream >> cname; - line = line + cname + " "; - if (line.length() > 400) - { - Srv->SendTo(NULL, user, checkstr + " onchans " + line); - line = ""; - } - } - if (line.length()) - { - Srv->SendTo(NULL, user, checkstr + " onchans " + line); - } - } - else - { - Srv->SendTo(NULL, user, checkstr + " onchans " + chliststr); - } - } + std::stringstream dump(chliststr); + /* XXX - This doent suck so much */ + Srv->DumpText(user,checkstr + " onchans ", dump); } else if (targchan) { -- 2.39.5