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.
This commit is contained in:
Jilles Tjoelker 2009-03-08 14:31:50 +01:00
parent 7340b36bf2
commit 408024fa63

View file

@ -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;
}