From ff7b9e9af0a502989fa88b096b2183590193e2cc Mon Sep 17 00:00:00 2001 From: brain Date: Fri, 10 Nov 2006 19:46:53 +0000 Subject: Implement a change for bug #171. It might not be pretty in the /list output, but the rfc DOES say we must do something like this. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5678 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/cmd_list.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src/cmd_list.cpp') diff --git a/src/cmd_list.cpp b/src/cmd_list.cpp index 3371fc738..5ce458ab7 100644 --- a/src/cmd_list.cpp +++ b/src/cmd_list.cpp @@ -41,11 +41,20 @@ CmdResult cmd_list::Handle (const char** parameters, int pcnt, userrec *user) continue; // if the channel is not private/secret, OR the user is on the channel anyway bool n = i->second->HasUser(user); - if (((!(i->second->modes[CM_PRIVATE])) && (!(i->second->modes[CM_SECRET]))) || (n)) + if ((i->second->modes[CM_PRIVATE]) && (!n)) { long users = i->second->GetUserCounter(); if (users) - user->WriteServ("322 %s %s %d :[+%s] %s",user->nick,i->second->name,users,i->second->ChanModes(n),i->second->topic); + user->WriteServ("322 %s *",user->nick,i->second->name); + } + else + { + if (((!(i->second->modes[CM_PRIVATE])) && (!(i->second->modes[CM_SECRET]))) || (n)) + { + long users = i->second->GetUserCounter(); + if (users) + user->WriteServ("322 %s %s %d :[+%s] %s",user->nick,i->second->name,users,i->second->ChanModes(n),i->second->topic); + } } } user->WriteServ("323 %s :End of channel list.",user->nick); -- cgit v1.3.1-10-gc9f91