From 924bde50a2459ba399254ce2fd0e49d0e72ed7a7 Mon Sep 17 00:00:00 2001 From: danieldg Date: Mon, 21 Sep 2009 02:10:12 +0000 Subject: Always use user->SplitChanList in whois reply [jackmcbarn] git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11750 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/whois.cpp | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/src/whois.cpp b/src/whois.cpp index b967fac25..fc24d0c82 100644 --- a/src/whois.cpp +++ b/src/whois.cpp @@ -24,30 +24,14 @@ void InspIRCd::DoWhois(User* user, User* dest,unsigned long signon, unsigned lon std::string cl = dest->ChannelList(user, false); if (cl.length()) - { - if (cl.length() > 400) - { - user->SplitChanList(dest,cl); - } - else - { - this->SendWhoisLine(user, dest, 319, "%s %s :%s",user->nick.c_str(), dest->nick.c_str(), cl.c_str()); - } - } + user->SplitChanList(dest,cl); if (IS_OPER(user) && ServerInstance->Config->OperSpyWhois) { std::string scl = dest->ChannelList(user, true); if (scl.length()) { this->SendWhoisLine(user, dest, 336, "%s %s :is on private/secret channels:",user->nick.c_str(), dest->nick.c_str()); - if (scl.length() > 400) - { - user->SplitChanList(dest,scl); - } - else - { - this->SendWhoisLine(user, dest, 319, "%s %s :%s",user->nick.c_str(), dest->nick.c_str(), scl.c_str()); - } + user->SplitChanList(dest,scl); } } if (user != dest && *this->Config->HideWhoisServer && !user->HasPrivPermission("servers/auspex")) -- cgit v1.2.3