mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-06 20:43:12 +02:00
- The '?' wildcard was completely broken in 3.2.4, reported by tabrisnet (#0002797).
This commit is contained in:
+1
-1
@@ -156,7 +156,7 @@ const u_char *na = name;
|
||||
return (*m != 0);
|
||||
}
|
||||
|
||||
if ((lc(*m) != lc(*n)) && !((*m == '_') && (*n == ' ')))
|
||||
if ((lc(*m) != lc(*n)) && !((*m == '_') && (*n == ' ')) && (*m != '?'))
|
||||
{
|
||||
if (!ma)
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user