From 405ae5ce44a22b44641ad9f71cf3a7c56d9b3c32 Mon Sep 17 00:00:00 2001 From: Valery V Yatsko Date: Sat, 28 Jun 2008 12:56:58 +0400 Subject: [PATCH] notify_banned_client cleaned up --- src/client.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/client.c b/src/client.c index 3f9f588e..dd3ae34d 100644 --- a/src/client.c +++ b/src/client.c @@ -417,15 +417,7 @@ notify_banned_client(struct Client *client_p, struct ConfItem *aconf, int ban) } else { - switch (aconf->status) - { - case D_LINED: - reason = d_lined; - break; - default: - reason = k_lined; - break; - } + reason = aconf->status == D_LINED ? d_lined : k_lined; } if(ban == D_LINED && !IsPerson(client_p))