From b4dbc4dc72ce1cef463e2a873ae59190b2bcf74c Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Wed, 18 Jun 2003 23:32:36 +0000 Subject: [PATCH] - Fixed bug with /list and '?' wildcard, reported by maGGus. --- Changes | 2 ++ src/channel.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 7da199b29..afadd56cb 100644 --- a/Changes +++ b/Changes @@ -2229,3 +2229,5 @@ seen. gmtime warning still there - Docs update - Temporarily disabled compiling TRE *** Unreal3.2-beta17 release *** (god save us) +- Modified './update', now points to docs until we have a new update thingy. +- Fixed bug with /list and '?' wildcard, reported by maGGus. diff --git a/src/channel.c b/src/channel.c index 86e686d34..5f84ba84a 100644 --- a/src/channel.c +++ b/src/channel.c @@ -4159,7 +4159,7 @@ CMD_FUNC(m_list) nolist = lp; DupString(lp->value.cp, name + 1); } - else if (strchr(name, '*') || strchr(name, '*')) + else if (strchr(name, '*') || strchr(name, '?')) { doall = 1; lp = make_link();