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:
@@ -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
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user