From 408024fa63ecc7e2a685e42ecbec1e081f5f036e Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Sun, 8 Mar 2009 14:31:50 +0100 Subject: [PATCH] rehash bans: show mask in k/x line over-ruled notice This was already shown in the over-ruled notices on k/x line add. --- src/client.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/client.c b/src/client.c index 41da8952..2aa84520 100644 --- a/src/client.c +++ b/src/client.c @@ -563,8 +563,9 @@ check_klines(void) if(IsExemptKline(client_p)) { sendto_realops_snomask(SNO_GENERAL, L_ALL, - "KLINE over-ruled for %s, client is kline_exempt", - get_client_name(client_p, HIDE_IP)); + "KLINE over-ruled for %s, client is kline_exempt [%s@%s]", + get_client_name(client_p, HIDE_IP), + aconf->user, aconf->host); continue; } @@ -654,8 +655,9 @@ check_xlines(void) if(IsExemptKline(client_p)) { sendto_realops_snomask(SNO_GENERAL, L_ALL, - "XLINE over-ruled for %s, client is kline_exempt", - get_client_name(client_p, HIDE_IP)); + "XLINE over-ruled for %s, client is kline_exempt [%s]", + get_client_name(client_p, HIDE_IP), + aconf->name); continue; }