From: Colin Leroy Date: Sat, 11 Jun 2005 02:47:19 +0000 (+0000) Subject: 2005-06-11 [colin] 1.9.11cvs59 X-Git-Tag: rel_1_9_12~48 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=7331e00748c8d8c4b403ad5687213476da328d22 2005-06-11 [colin] 1.9.11cvs59 * src/imap.c printf -> debug_print --- diff --git a/ChangeLog-gtk2.claws b/ChangeLog-gtk2.claws index 9a82dbd8a..5da756650 100644 --- a/ChangeLog-gtk2.claws +++ b/ChangeLog-gtk2.claws @@ -1,3 +1,8 @@ +2005-06-11 [colin] 1.9.11cvs59 + + * src/imap.c + printf -> debug_print + 2005-06-11 [colin] 1.9.11cvs58 * src/imap.c diff --git a/PATCHSETS b/PATCHSETS index cb3e4c3ab..86785ca82 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -547,3 +547,4 @@ ( cvs diff -u -r 1.179.2.23 -r 1.179.2.24 src/imap.c; ) > 1.9.11cvs56.patchset ( cvs diff -u -r 1.179.2.24 -r 1.179.2.25 src/imap.c; cvs diff -u -r 1.49.2.46 -r 1.49.2.47 src/procmime.c; cvs diff -u -r 1.11.2.11 -r 1.11.2.12 src/common/smtp.c; cvs diff -u -r 1.2.2.8 -r 1.2.2.9 src/gtk/inputdialog.c; ) > 1.9.11cvs57.patchset ( cvs diff -u -r 1.179.2.25 -r 1.179.2.26 src/imap.c; ) > 1.9.11cvs58.patchset +( cvs diff -u -r 1.179.2.26 -r 1.179.2.27 src/imap.c; ) > 1.9.11cvs59.patchset diff --git a/configure.ac b/configure.ac index 32549bbb5..a7fee39c8 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=11 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=58 +EXTRA_VERSION=59 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/imap.c b/src/imap.c index 87980ea5b..f86c1302d 100644 --- a/src/imap.c +++ b/src/imap.c @@ -957,7 +957,7 @@ static gchar *imap_fetch_msg(Folder *folder, FolderItem *item, gint uid) return NULL; } -printf("fetching messages\n"); + debug_print("-> fetching messages\n"); ok = imap_select(session, IMAP_FOLDER(folder), item->path, NULL, NULL, NULL, NULL, FALSE); if (ok != IMAP_SUCCESS) { @@ -4198,7 +4198,7 @@ GSList *imap_get_msginfos(Folder *folder, FolderItem *item, GSList *msgnum_list) session = imap_session_get(folder); g_return_val_if_fail(session != NULL, NULL); -printf("getting msginfos\n"); + debug_print("-> getting msginfos\n"); ok = imap_select(session, IMAP_FOLDER(folder), item->path, NULL, NULL, NULL, NULL, FALSE); if (ok != IMAP_SUCCESS) @@ -4387,7 +4387,8 @@ void imap_change_flags(Folder *folder, FolderItem *item, MsgInfo *msginfo, MsgPe session = imap_session_get(folder); if (!session) return; -printf("changing flags\n"); + + debug_print("-> changing flags\n"); if (hashtable_process_tag != -1 && item != last_deferred_item && last_deferred_item != NULL) { @@ -4496,7 +4497,7 @@ static gint imap_remove_msg(Folder *folder, FolderItem *item, gint uid) } last_deferred_item = item; -printf("removing messages\n"); +debug_print("-> removing messages\n"); ok = imap_select(session, IMAP_FOLDER(folder), item->path, NULL, NULL, NULL, NULL, FALSE); if (ok != IMAP_SUCCESS)