1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 23:43:13 +02:00

- Fixed bug with /list and '?' wildcard, reported by maGGus.

This commit is contained in:
Bram Matthys
2003-06-18 23:32:36 +00:00
parent 909bc03521
commit b4dbc4dc72
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -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.
+1 -1
View File
@@ -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();