1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 15:33:12 +02:00

Made elist_match_user also check against the users cloaked host

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2734 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2010-01-06 19:56:06 +00:00
parent abc8b4aa4e
commit da1162f770
2 changed files with 4 additions and 1 deletions
+2
View File
@@ -2392,6 +2392,8 @@ Entry *elist_match_user(EList * list, User * u)
res = elist_match(list, u->nick, u->username, u->host, ip);
if (!res)
res = elist_match(list, u->nick, u->username, u->vhost, ip);
if (!res)
res = elist_match(list, u->nick, u->username, u->chost, ip);
if (host)
free(host);