aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2004-02-24 22:01:29 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-02-24 22:01:29 +0800
commitdf0b293e7ac2feb1420115f02d20fd1416747d1c (patch)
treeefa059aa6f41a44c735a517dcc3e77e39a77e8bb /camel
parente4e1973fdae8ed4a368380042af8b1628053987e (diff)
downloadgsoc2013-evolution-df0b293e7ac2feb1420115f02d20fd1416747d1c.tar
gsoc2013-evolution-df0b293e7ac2feb1420115f02d20fd1416747d1c.tar.gz
gsoc2013-evolution-df0b293e7ac2feb1420115f02d20fd1416747d1c.tar.bz2
gsoc2013-evolution-df0b293e7ac2feb1420115f02d20fd1416747d1c.tar.lz
gsoc2013-evolution-df0b293e7ac2feb1420115f02d20fd1416747d1c.tar.xz
gsoc2013-evolution-df0b293e7ac2feb1420115f02d20fd1416747d1c.tar.zst
gsoc2013-evolution-df0b293e7ac2feb1420115f02d20fd1416747d1c.zip
remove debug
svn path=/trunk/; revision=24843
Diffstat (limited to 'camel')
-rw-r--r--camel/providers/imap/camel-imap-store.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c
index 4ca1b1d4bd..335b98b4a7 100644
--- a/camel/providers/imap/camel-imap-store.c
+++ b/camel/providers/imap/camel-imap-store.c
@@ -2364,8 +2364,6 @@ fill_fi(CamelStore *store, CamelFolderInfo *fi, guint32 flags)
char *storage_path, *folder_dir, *path;
CamelFolderSummary *s;
- printf("looking up counts from '%s'\n", fi->full_name);
-
/* This is a lot of work for one path! */
storage_path = g_strdup_printf("%s/folders", ((CamelImapStore *)store)->storage_path);
folder_dir = e_path_to_physical(storage_path, fi->full_name);
@@ -2373,13 +2371,8 @@ fill_fi(CamelStore *store, CamelFolderInfo *fi, guint32 flags)
s = (CamelFolderSummary *)camel_object_new(camel_imap_summary_get_type());
camel_folder_summary_set_build_content(s, TRUE);
camel_folder_summary_set_filename(s, path);
- if (camel_folder_summary_header_load(s) != -1) {
+ if (camel_folder_summary_header_load(s) != -1)
unread = s->unread_count;
- printf("loaded summary header unread = %d\n", unread);
- } else {
- printf("couldn't load summary header?\n");
- }
-
g_free(storage_path);
g_free(folder_dir);
g_free(path);