diff options
author | 9 <NotZed@Ximian.com> | 2001-09-19 16:28:36 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-09-19 16:28:36 +0800 |
commit | bef39dc4e0bbdb334fef71f973bcb7781dce65df (patch) | |
tree | fbb2c1a5fc3d24232d34dbce01edd587e8b84002 /camel/camel-store.c | |
parent | d9775521cad4588963b2edb297551c85fae1459f (diff) | |
download | gsoc2013-evolution-bef39dc4e0bbdb334fef71f973bcb7781dce65df.tar.gz gsoc2013-evolution-bef39dc4e0bbdb334fef71f973bcb7781dce65df.tar.zst gsoc2013-evolution-bef39dc4e0bbdb334fef71f973bcb7781dce65df.zip |
General cleanup of camel debug printfs.
2001-09-19 <NotZed@Ximian.com>
* General cleanup of camel debug printfs.
* camel-lock.c (camel_lock_fcntl): Changed to return 'success' if
the error indicates file locking isn't supported on this
filesystem. Still return a warning just incase (if its the first
time). Might fix a lot of reported bugs.
* providers/local/camel-spool-store.c (get_folder_info): Dont
include the empty // host part in the uri. This 'breaks' the
service lookup.
svn path=/trunk/; revision=12973
Diffstat (limited to 'camel/camel-store.c')
-rw-r--r-- | camel/camel-store.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/camel/camel-store.c b/camel/camel-store.c index 489d269991..7f8dab06b3 100644 --- a/camel/camel-store.c +++ b/camel/camel-store.c @@ -249,15 +249,11 @@ camel_store_get_folder (CamelStore *store, const char *folder_name, guint32 flag if (store->folders) { CAMEL_STORE_LOCK(store, cache_lock); - printf("adding folder '%s' to folders hashtable\n", folder_name); g_hash_table_insert (store->folders, g_strdup (folder_name), folder); - - printf("store folders size = %d\n", g_hash_table_size(store->folders)); camel_object_hook_event (CAMEL_OBJECT (folder), "finalize", folder_finalize, store); CAMEL_STORE_UNLOCK(store, cache_lock); - } else - printf("not adding folder '%s' to folders hashtable\n", folder_name); + } } } |