[exim-cvs] macros_trusted overriden message only if debuggin…

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Exim Git Commits Mailing List
Fecha:  
A: exim-cvs
Asunto: [exim-cvs] macros_trusted overriden message only if debugging.
Gitweb: http://git.exim.org/exim.git/commitdiff/ebd9bd7d2ef66379770eb415b360b6b880784f7b
Commit:     ebd9bd7d2ef66379770eb415b360b6b880784f7b
Parent:     4b9529fc4b04a82806f9a054bee6aedbda3eadb9
Author:     Phil Pennock <pdp@???>
AuthorDate: Sun Jan 30 03:04:52 2011 -0500
Committer:  Phil Pennock <pdp@???>
CommitDate: Sun Jan 30 03:04:52 2011 -0500


    macros_trusted overriden message only if debugging.


    DEBUG(D_any) missing.  Fixed.
---
 src/src/exim.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/src/src/exim.c b/src/src/exim.c
index b3035ca..cf48c04 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
 }