From: brain Date: Tue, 7 Mar 2006 23:41:45 +0000 (+0000) Subject: w00t may want to check this works X-Git-Tag: v2.0.23~8560 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=033640feb2f01c6d6d704b01bbafa1a98d6c2d61;p=user%2Fhenk%2Fcode%2Finspircd.git w00t may want to check this works git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3536 e03df62e-2008-0410-955e-edbf42e46eb7 --- 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) {