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