mirror of
https://github.com/anope/anope.git
synced 2026-06-27 20:06:37 +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:
@@ -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);
|
||||
|
||||
+2
-1
@@ -9,9 +9,10 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="8"
|
||||
VERSION_PATCH="2"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="2731"
|
||||
VERSION_BUILD="2734"
|
||||
|
||||
# $Log$ # Changes since 1.8.2 Release
|
||||
#Revision 2734 - Made elist_match_user also check against the users cloaked host
|
||||
#Revision 2731 - Mark users as unrecognized on Inspircd 1.2 if no/invalid metadata is recieved for them before the next uid/eob
|
||||
#Revision 2730 - Fixed typo in inspircd12.h causing 2 modes to use the same bit.
|
||||
#Revision 2727 - Fixed a few SASET help replies to reply to services opers, and fixed the rest to not reply to anyone who requests help
|
||||
|
||||
Reference in New Issue
Block a user