From 7246c078e64fa66cd92dc74bc031a3350cd5f931 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 10 Apr 2003 17:13:15 +0000 Subject: Turn off debugging if CAMEL_VERBOSE_DEBUG isn't set. 2003-04-10 Jeffrey Stedfast * providers/smtp/camel-smtp-transport.c: Turn off debugging if CAMEL_VERBOSE_DEBUG isn't set. --- camel/providers/smtp/camel-smtp-transport.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'camel/providers/smtp') diff --git a/camel/providers/smtp/camel-smtp-transport.c b/camel/providers/smtp/camel-smtp-transport.c index 9aaf4ded9..5cdf33a5c 100644 --- a/camel/providers/smtp/camel-smtp-transport.c +++ b/camel/providers/smtp/camel-smtp-transport.c @@ -57,7 +57,9 @@ #include "camel-sasl.h" #include "string-utils.h" -#define d(x) x + +extern int camel_verbose_debug; +#define d(x) (camel_verbose_debug ? (x) : 0) /* Specified in RFC 821 */ #define SMTP_PORT 25 -- cgit v1.2.1