From a58c4fedebb46f59b34125086df89962ff6bb756 Mon Sep 17 00:00:00 2001 From: JD Horelick Date: Wed, 23 Jun 2010 16:30:08 -0400 Subject: [PATCH] Sort of standardize the display of DNSBL hit snotes. --- src/s_user.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/s_user.c b/src/s_user.c index e6dc1ca..7fbeaae 100644 --- a/src/s_user.c +++ b/src/s_user.c @@ -453,8 +453,8 @@ register_local_user(struct Client *client_p, struct Client *source_p, const char source_p->preClient->dnsbl_listed->hits++; sendto_realops_snomask(SNO_REJ, L_ALL, - "%s [%s] is being disconnected due to being listed in DNS Blacklist %s", - source_p->name, source_p->sockhost, source_p->preClient->dnsbl_listed->host); + "%s [%s@%s] is being disconnected due to being listed in DNS Blacklist %s", + source_p->name, source_p->username, source_p->sockhost, source_p->preClient->dnsbl_listed->host); add_reject(source_p, NULL, NULL); exit_client(client_p, source_p, &me, "*** Banned (DNS blacklist)");