notify_banned_client cleaned up
This commit is contained in:
parent
bb79db15d7
commit
4fd52c8c20
10
src/client.c
10
src/client.c
|
@ -417,15 +417,7 @@ notify_banned_client(struct Client *client_p, struct ConfItem *aconf, int ban)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
switch (aconf->status)
|
reason = aconf->status == D_LINED ? d_lined : k_lined;
|
||||||
{
|
|
||||||
case D_LINED:
|
|
||||||
reason = d_lined;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
reason = k_lined;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(ban == D_LINED && !IsPerson(client_p))
|
if(ban == D_LINED && !IsPerson(client_p))
|
||||||
|
|
Loading…
Reference in New Issue