mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-29 04:16:37 +02:00
- The '?' wildcard was completely broken in 3.2.4, reported by tabrisnet (#0002797).
This commit is contained in:
@@ -1035,3 +1035,4 @@
|
||||
- Fixed amd64 problem regarding /*LINE always saying 'The time you specified is out of range',
|
||||
reported and test shell provided by Tauop.
|
||||
- Updated example.bg.conf, the one shipped with 3.2.4 had several errors.
|
||||
- The '?' wildcard was completely broken in 3.2.4, reported by tabrisnet (#0002797).
|
||||
|
||||
+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