1
0
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:
Bram Matthys
2006-02-05 17:20:36 +00:00
parent 5dcddc4404
commit fa9cf506e7
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -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
View File
@@ -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;