summaryrefslogtreecommitdiff
path: root/src/cmd_list.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd_list.cpp')
-rw-r--r--src/cmd_list.cpp7
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))