aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-03-15 16:32:08 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-03-15 16:32:08 +0800
commit1043413b4066785b4ee0ba8c38a71c3567e89b8d (patch)
tree33dd9e68cbc55b4496e719c8665f022feaaa6844 /camel/camel.c
parentf2a8b1d3388127f9040b17137273a27333361235 (diff)
downloadgsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar.gz
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar.bz2
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar.lz
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar.xz
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar.zst
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.zip
set the mime-type field on the content the same way as
2004-03-15 Not Zed <NotZed@Ximian.com> * providers/imap/camel-imap-folder.c (get_content, get_message): set the mime-type field on the content the same way as construct_from_stream does. Bug #55472. * camel-mime-message.c (camel_mime_message_dump): utility function to dump message content to stdout. (camel_mime_message_init): default mime type to message/rfc822. * camel.c (camel_init): change camel verbose debug to be an int, a bitmask of debug options. svn path=/trunk/; revision=25064
Diffstat (limited to 'camel/camel.c')
-rw-r--r--camel/camel.c4
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();