From 9ed98f0fdd55e84a0aee7f59c4570239527c577a Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Mon, 29 Oct 2018 06:29:27 +0000 Subject: [PATCH] Requested change by Mark Lewis: can we get a slight change in the sbbsecho code or maybe in echocfg so that when a link is set to passive, areafix notices are NOT sent to them even if "send notices" is specifically set to yes? --- src/sbbs3/sbbsecho.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbbs3/sbbsecho.c b/src/sbbs3/sbbsecho.c index 38ae7a58bd..fca70a70fe 100644 --- a/src/sbbs3/sbbsecho.c +++ b/src/sbbs3/sbbsecho.c @@ -1376,7 +1376,7 @@ void gen_notify_list(nodecfg_t* nodecfg) if(nodecfg != NULL && &cfg.nodecfg[k] != nodecfg) continue; - if(!cfg.nodecfg[k].send_notify) + if(!cfg.nodecfg[k].send_notify || cfg.nodecfg[k].passive) continue; if((tmpf=tmpfile())==NULL) { -- GitLab