From 23c654519cbb4a3fc67f08fbdbd35a92a94d488f Mon Sep 17 00:00:00 2001 From: adam- Date: Sun, 12 Jul 2009 19:53:26 +0000 Subject: [PATCH] Fixed elist_match_user to check against vhosts, patch from sergio git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2377 5417fbe8-f217-4b02-8779-1006273d7864 --- src/channels.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channels.c b/src/channels.c index 517bb84db..52a6ccace 100644 --- a/src/channels.c +++ b/src/channels.c @@ -2296,7 +2296,7 @@ Entry *elist_match_user(EList * list, User * u) /* Match what we ve got against the lists.. */ res = elist_match(list, u->nick, u->GetIdent().c_str(), u->host, ip); if (!res) - elist_match(list, u->nick, u->GetIdent().c_str(), u->vhost, ip); + res = elist_match(list, u->nick, u->GetIdent().c_str(), u->vhost, ip); if (host) delete [] host;