0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-04 22:58:52 +02:00

Skip propagated bans in rehash txlines/tresvs.

This commit is contained in:
Jilles Tjoelker 2010-03-05 00:37:56 +01:00
parent 9197bc355e
commit 97f44d343a

View file

@ -174,7 +174,7 @@ rehash_txlines(struct Client *source_p)
{ {
aconf = ptr->data; aconf = ptr->data;
if(!aconf->hold) if(!aconf->hold || aconf->lifetime)
continue; continue;
free_conf(aconf); free_conf(aconf);
@ -199,7 +199,7 @@ rehash_tresvs(struct Client *source_p)
{ {
aconf = ptr->data; aconf = ptr->data;
if(!aconf->hold) if(!aconf->hold || aconf->lifetime)
continue; continue;
free_conf(aconf); free_conf(aconf);
@ -211,7 +211,7 @@ rehash_tresvs(struct Client *source_p)
{ {
aconf = ptr->data; aconf = ptr->data;
if(!aconf->hold) if(!aconf->hold || aconf->lifetime)
continue; continue;
free_conf(aconf); free_conf(aconf);