mirror of
https://github.com/anope/anope.git
synced 2026-07-10 14:23:14 +02:00
Fixed ignore not matching against users' real host or IP (introduced in rev. 3049).
This commit is contained in:
@@ -11,6 +11,7 @@ Anope Version 1.8 - GIT
|
||||
08/10 F Fixed loading bs_fantasy_owner on InspIRCd 2.0 on startup [ #00]
|
||||
08/21 F Send DROP event when forbidding nicks and channels. [ #00]
|
||||
11/16 F Fixed ident being used instead of vident in some comparisons. [ #00]
|
||||
11/20 F Fixed ignore not matching against users' real host or IP. [ #00]
|
||||
|
||||
Anope Version 1.8.6
|
||||
-------------------
|
||||
|
||||
+1
-1
@@ -126,7 +126,7 @@ IgnoreData *get_ignore(const char *nick)
|
||||
if (is_oper(u))
|
||||
return NULL;
|
||||
for (ign = ignore; ign; ign = ign->next)
|
||||
if (match_usermask(ign->mask, u))
|
||||
if (match_usermask_full(ign->mask, u, true))
|
||||
break;
|
||||
} else {
|
||||
/* We didn't get a user.. generate a valid mask. */
|
||||
|
||||
+2
-1
@@ -8,9 +8,10 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="8"
|
||||
VERSION_PATCH="7"
|
||||
VERSION_EXTRA="-git"
|
||||
VERSION_BUILD="3085"
|
||||
VERSION_BUILD="3086"
|
||||
|
||||
# $Log$ # Changes since 1.8.6 Release
|
||||
#Revision 3086 - Fixed ignore not matching against users' real host or IP (introduced in rev. 3049).
|
||||
#Revision 3085 - Use vident instead of ident in combination with the vhost for botserv kick(ban)s and nickserv access list checking.
|
||||
#Revision 3084 - Match bans against the vident/vhost instead of real ident/vhost when available.
|
||||
#Revision 3083 - Use _exit, not exit, to exit mail forks to prevent our atexit() functions from being called, and removing our pidfile
|
||||
|
||||
Reference in New Issue
Block a user