diff options
author | Viper <viper@anope.org> | 2011-11-16 16:30:45 +0100 |
---|---|---|
committer | Viper <viper@anope.org> | 2011-11-16 16:30:45 +0100 |
commit | 2a1cd54bc7d6e8cdd9accccef50d4ec9bb1d6f36 (patch) | |
tree | b9f46e151a6d91abb158370f06befe0d26a27637 /src | |
parent | 0dd4a98e5369ef0c023a1fa7174988ceba32f27d (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.c | 2 | ||||
-rw-r--r-- | src/nickserv.c | 4 |
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) { |