From: Phil Pennock Date: Sun, 30 Jan 2011 08:04:52 +0000 (-0500) Subject: macros_trusted overriden message only if debugging. X-Git-Tag: exim-4_75_RC1~21^2~3 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/ebd9bd7d2ef66379770eb415b360b6b880784f7b macros_trusted overriden message only if debugging. DEBUG(D_any) missing. Fixed. --- diff --git a/src/src/exim.c b/src/src/exim.c index b3035ca7c..cf48c04b3 100644 --- a/src/src/exim.c +++ b/src/src/exim.c @@ -1281,7 +1281,7 @@ for (m = macros; m != NULL; m = m->next) return FALSE; } } -debug_printf("macros_trusted overriden to true by whitelisting\n"); +DEBUG(D_any) debug_printf("macros_trusted overriden to true by whitelisting\n"); return TRUE; #endif }