diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-01-06 19:56:06 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-01-06 19:56:06 +0000 |
commit | da1162f7707a17d448fa2780a164e2e4e29aa28b (patch) | |
tree | 383df43614fdc1ebc17039809362a76e541cfa81 /src | |
parent | abc8b4aa4e44b84c9455f93e49113408144d2f0b (diff) |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/channels.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/channels.c b/src/channels.c index fbeddb633..867720125 100644 --- a/src/channels.c +++ b/src/channels.c @@ -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); |