summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorViper <viper@anope.org>2011-11-16 16:30:45 +0100
committerViper <viper@anope.org>2011-11-16 16:30:45 +0100
commit2a1cd54bc7d6e8cdd9accccef50d4ec9bb1d6f36 (patch)
treeb9f46e151a6d91abb158370f06befe0d26a27637 /src
parent0dd4a98e5369ef0c023a1fa7174988ceba32f27d (diff)
Use vident instead of ident in combination with the vhost for botserv kick(ban)s and nickserv access list checking.
Diffstat (limited to 'src')
-rw-r--r--src/botserv.c2
-rw-r--r--src/nickserv.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/botserv.c b/src/botserv.c
index 7506df7f5..894d6d9df 100644
--- a/src/botserv.c
+++ b/src/botserv.c
@@ -660,7 +660,7 @@ static BanData *get_ban_data(Channel * c, User * u)
if (!c || !u)
return NULL;
- snprintf(mask, sizeof(mask), "%s@%s", u->username,
+ snprintf(mask, sizeof(mask), "%s@%s", common_get_vident(u),
common_get_vhost(u));
for (bd = c->bd; bd; bd = next) {
diff --git a/src/nickserv.c b/src/nickserv.c
index a38894268..f60ce81c8 100644
--- a/src/nickserv.c
+++ b/src/nickserv.c
@@ -1292,8 +1292,8 @@ int is_on_access(User * u, NickCore * nc)
sprintf(buf, "%s@%s", u->username, u->host);
if (ircd->vhost) {
if (u->vhost) {
- buf2 = scalloc(strlen(u->username) + strlen(u->vhost) + 2, 1);
- sprintf(buf2, "%s@%s", u->username, u->vhost);
+ buf2 = scalloc(strlen(u->vident) + strlen(u->vhost) + 2, 1);
+ sprintf(buf2, "%s@%s", u->vident, u->vhost);
}
if (u->chost)
{