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:
parent
6bba251749
commit
13ea0f1cd1
10
src/client.c
10
src/client.c
|
@ -563,8 +563,9 @@ check_klines(void)
|
||||||
if(IsExemptKline(client_p))
|
if(IsExemptKline(client_p))
|
||||||
{
|
{
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"KLINE over-ruled for %s, client is kline_exempt",
|
"KLINE over-ruled for %s, client is kline_exempt [%s@%s]",
|
||||||
get_client_name(client_p, HIDE_IP));
|
get_client_name(client_p, HIDE_IP),
|
||||||
|
aconf->user, aconf->host);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -654,8 +655,9 @@ check_xlines(void)
|
||||||
if(IsExemptKline(client_p))
|
if(IsExemptKline(client_p))
|
||||||
{
|
{
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"XLINE over-ruled for %s, client is kline_exempt",
|
"XLINE over-ruled for %s, client is kline_exempt [%s]",
|
||||||
get_client_name(client_p, HIDE_IP));
|
get_client_name(client_p, HIDE_IP),
|
||||||
|
aconf->name);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue