diff options
author | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-18 00:56:26 +0000 |
---|---|---|
committer | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-18 00:56:26 +0000 |
commit | 3c82d2d767186dd6d386dbbe08219ad8612e299e (patch) | |
tree | 8b8c661bc8d18b288831dc08d24b11016f745e6e | |
parent | 79961a8903605d64195c531b9a68b01fbbb1042e (diff) |
Forward port of /list pattern matching, reported by Stskeeps
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4940 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/cmd_list.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cmd_list.cpp b/src/cmd_list.cpp index 7aa9319ba..ab9ca083d 100644 --- a/src/cmd_list.cpp +++ b/src/cmd_list.cpp @@ -17,17 +17,18 @@ #include "users.h" #include "ctables.h" #include "commands.h" - #include "inspircd.h" #include "commands/cmd_list.h" - - +#include "wildcard.h" void cmd_list::Handle (const char** parameters, int pcnt, userrec *user) { user->WriteServ("321 %s Channel :Users Name",user->nick); for (chan_hash::const_iterator i = ServerInstance->chanlist.begin(); i != ServerInstance->chanlist.end(); i++) { + // attempt to match a glob pattern + if (pcnt && !match(i->second->name, parameters[0])) + 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)) |