diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-04-10 17:13:15 +0000 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-04-10 17:13:15 +0000 |
commit | 7246c078e64fa66cd92dc74bc031a3350cd5f931 (patch) | |
tree | e49b4706892f89f0731ea56bb992a0e1e7b63ae0 /camel/providers/smtp | |
parent | d728981bdd7c683dc00b026757b6e95aa9a281a4 (diff) | |
download | evolution-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.c | 4 |
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 |