From b2ff00ab87f98783e1978e19f4b0a3f44d1ba84e Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Fri, 24 Aug 2018 10:08:59 -0700 Subject: [PATCH] SCP: Make debug duplicate message reduction properly the default behavior --- scp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scp.c b/scp.c index bc5ce955..461d3ea8 100644 --- a/scp.c +++ b/scp.c @@ -12226,7 +12226,7 @@ static void _sim_debug_write_flush (const char *buf, size_t len, t_bool flush) { char *eol; -if (!(sim_deb_switches & SWMASK ('F'))) { /* filtering disabled? */ +if (sim_deb_switches & SWMASK ('F')) { /* filtering disabled? */ if (len > 0) fwrite (buf, 1, len, sim_deb); /* output now. */ return; /* done */