]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Forward port of /list pattern matching, reported by Stskeeps
authorspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 18 Aug 2006 00:56:26 +0000 (00:56 +0000)
committerspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 18 Aug 2006 00:56:26 +0000 (00:56 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4940 e03df62e-2008-0410-955e-edbf42e46eb7

src/cmd_list.cpp

index 7aa9319baa1e9e9430fcecb3ba5035237aec303f..ab9ca083dcf6cbb2964abd8e9ea1bf4868139b0f 100644 (file)
 #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))