Skip propagated bans in rehash txlines/tresvs.
This commit is contained in:
parent
9197bc355e
commit
97f44d343a
1 changed files with 3 additions and 3 deletions
|
@ -174,7 +174,7 @@ rehash_txlines(struct Client *source_p)
|
|||
{
|
||||
aconf = ptr->data;
|
||||
|
||||
if(!aconf->hold)
|
||||
if(!aconf->hold || aconf->lifetime)
|
||||
continue;
|
||||
|
||||
free_conf(aconf);
|
||||
|
@ -199,7 +199,7 @@ rehash_tresvs(struct Client *source_p)
|
|||
{
|
||||
aconf = ptr->data;
|
||||
|
||||
if(!aconf->hold)
|
||||
if(!aconf->hold || aconf->lifetime)
|
||||
continue;
|
||||
|
||||
free_conf(aconf);
|
||||
|
@ -211,7 +211,7 @@ rehash_tresvs(struct Client *source_p)
|
|||
{
|
||||
aconf = ptr->data;
|
||||
|
||||
if(!aconf->hold)
|
||||
if(!aconf->hold || aconf->lifetime)
|
||||
continue;
|
||||
|
||||
free_conf(aconf);
|
||||
|
|
Loading…
Reference in a new issue