summaryrefslogtreecommitdiff
path: root/camel/providers/smtp
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-04-10 17:13:15 +0000
committerJeffrey Stedfast <fejj@src.gnome.org>2003-04-10 17:13:15 +0000
commit7246c078e64fa66cd92dc74bc031a3350cd5f931 (patch)
treee49b4706892f89f0731ea56bb992a0e1e7b63ae0 /camel/providers/smtp
parentd728981bdd7c683dc00b026757b6e95aa9a281a4 (diff)
downloadevolution-data-server-7246c078e64fa66cd92dc74bc031a3350cd5f931.tar.gz
Turn off debugging if CAMEL_VERBOSE_DEBUG isn't set.EVOLUTION_1_3_2
2003-04-10 Jeffrey Stedfast <fejj@ximian.com> * providers/smtp/camel-smtp-transport.c: Turn off debugging if CAMEL_VERBOSE_DEBUG isn't set.
Diffstat (limited to 'camel/providers/smtp')
-rw-r--r--camel/providers/smtp/camel-smtp-transport.c4
1 files changed, 3 insertions, 1 deletions
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