Among bans with the same creation time, prefer the one with longest lifetime.
This commit is contained in:
parent
9470d75a42
commit
6229f9f83b
1 changed files with 3 additions and 1 deletions
|
@ -105,7 +105,9 @@ ms_ban(struct Client *client_p, struct Client *source_p, int parc, const char *p
|
||||||
if (ptr != NULL)
|
if (ptr != NULL)
|
||||||
{
|
{
|
||||||
aconf = ptr->data;
|
aconf = ptr->data;
|
||||||
if (aconf->created >= created)
|
if (aconf->created > created ||
|
||||||
|
(aconf->created == created &&
|
||||||
|
aconf->lifetime >= lifetime))
|
||||||
{
|
{
|
||||||
if (IsPerson(source_p))
|
if (IsPerson(source_p))
|
||||||
sendto_one_notice(source_p,
|
sendto_one_notice(source_p,
|
||||||
|
|
Loading…
Reference in a new issue