From a491246f8f15e4f12d279095813d059e10099a39 Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Fri, 5 Mar 2010 00:37:56 +0100 Subject: [PATCH] Skip propagated bans in rehash txlines/tresvs. --- modules/m_rehash.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/m_rehash.c b/modules/m_rehash.c index 40cc7de..8557f8c 100644 --- a/modules/m_rehash.c +++ b/modules/m_rehash.c @@ -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);