diff options
author | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-03-05 13:33:55 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-03-05 13:33:55 +0800 |
commit | f4b7a4632573de34280e904bfb03a410a1fa1dbf (patch) | |
tree | b7b45a3424645a6836587c214dc5dfb2737239ef /camel/providers | |
parent | 1208f96fe41fa87dfab2ee0a3b67a822380aeb27 (diff) | |
download | gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar.gz gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar.bz2 gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar.lz gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar.xz gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.tar.zst gsoc2013-evolution-f4b7a4632573de34280e904bfb03a410a1fa1dbf.zip |
Tons of fixes to fix things
svn path=/trunk/; revision=2057
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/mbox/camel-mbox-folder.c | 2 | ||||
-rw-r--r-- | camel/providers/mbox/camel-mbox-parser.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/mbox/camel-mbox-folder.c b/camel/providers/mbox/camel-mbox-folder.c index cc3839abb6..34d3a5783a 100644 --- a/camel/providers/mbox/camel-mbox-folder.c +++ b/camel/providers/mbox/camel-mbox-folder.c @@ -1022,7 +1022,7 @@ _get_message_by_uid (CamelFolder *folder, const gchar *uid, CamelException *ex) CamelMimeMessage *message = NULL; CamelStore *parent_store; - CAMEL_LOG_FULL_DEBUG ("Entering CamelMboxFolder::get_uid_list\n"); + CAMEL_LOG_FULL_DEBUG ("Entering CamelMboxFolder::get_message_by_uid\n"); searched_uid = strtoul(uid, (char **)NULL, 10); diff --git a/camel/providers/mbox/camel-mbox-parser.c b/camel/providers/mbox/camel-mbox-parser.c index d730c07aa6..b17c5c1e95 100644 --- a/camel/providers/mbox/camel-mbox-parser.c +++ b/camel/providers/mbox/camel-mbox-parser.c @@ -380,7 +380,7 @@ new_message_detected (CamelMboxPreParser *parser) /* if we were filling a message information save it in the message information array */ - + CAMEL_LOG_FULL_DEBUG (" Message position : %d\n", parser->real_position); if (parser->is_pending_message) { parser->current_message_info.size = parser->real_position - parser->current_message_info.message_position; |