From 430833dca2fc08ae6f423ff6bded4bffeb5d345a Mon Sep 17 00:00:00 2001 From: jess Date: Sat, 9 Oct 2021 23:44:36 +0100 Subject: [PATCH] "KLINE active for ..." -> "Disconnecting K-Lined user ..." --- ircd/client.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ircd/client.c b/ircd/client.c index 8cf44bd2..a2bd0bd1 100644 --- a/ircd/client.c +++ b/ircd/client.c @@ -551,7 +551,7 @@ check_klines(void) } sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, - "KLINE active for %s (%s@%s)", + "Disconnecting K-Lined user %s (%s@%s)", get_client_name(client_p, HIDE_IP), aconf->user, aconf->host); notify_banned_client(client_p, aconf, K_LINED); @@ -634,7 +634,7 @@ check_one_kline(struct ConfItem *kline) } sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, - "KLINE active for %s (%s@%s)", + "Disconnecting K-Lined user %s (%s@%s)", get_client_name(client_p, HIDE_IP), kline->user, kline->host); notify_banned_client(client_p, kline, K_LINED); @@ -669,7 +669,7 @@ check_dlines(void) continue; sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, - "DLINE active for %s (%s)", + "Disconnecting D-Lined user %s (%s)", get_client_name(client_p, HIDE_IP), aconf->host); notify_banned_client(client_p, aconf, D_LINED); @@ -725,7 +725,7 @@ check_xlines(void) } sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, - "XLINE active for %s (%s)", + "Disconnecting X-Lined user %s (%s)", get_client_name(client_p, HIDE_IP), aconf->host); (void) exit_client(client_p, client_p, &me, "Bad user info");