diff options
Diffstat (limited to 'camel/camel.c')
-rw-r--r-- | camel/camel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel.c b/camel/camel.c index e926203732..8241b5b0ac 100644 --- a/camel/camel.c +++ b/camel/camel.c @@ -40,7 +40,7 @@ #include "camel-mime-utils.h" #include "camel-provider.h" -gboolean camel_verbose_debug = FALSE; +int camel_verbose_debug = 0; static int initialised = FALSE; @@ -78,7 +78,7 @@ camel_init (const char *configdir, gboolean nss_init) return 0; if (getenv ("CAMEL_VERBOSE_DEBUG")) - camel_verbose_debug = TRUE; + camel_verbose_debug = atoi(getenv("CAMEL_VERBOSE_DEBUG")); /* initialise global camel_object_type */ camel_object_get_type(); |