diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-05-15 01:53:47 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-05-15 01:53:47 +0800 |
commit | 0297c01437237045337130d80cfd9da6f0a270de (patch) | |
tree | b74ff852b254342be26849a59f82926a334fb213 /camel/providers/imap/camel-imap-command.c | |
parent | 34eb18b30bac238d4abf2664dfe9f1f28808db29 (diff) | |
download | gsoc2013-evolution-0297c01437237045337130d80cfd9da6f0a270de.tar.gz gsoc2013-evolution-0297c01437237045337130d80cfd9da6f0a270de.tar.zst gsoc2013-evolution-0297c01437237045337130d80cfd9da6f0a270de.zip |
Added a note to the comment block for this function noting that uids MUST
2003-05-13 Jeffrey Stedfast <fejj@ximian.com>
* providers/imap/camel-imap-utils.c (imap_uid_array_to_set): Added
a note to the comment block for this function noting that uids
MUST be in sorted order.
* providers/imap/camel-imap-folder.c (imap_expunge_uids_online):
Sort the uids before splitting them into UID set chunks. The code
that splits the uid array into sets expects the uids to be in
sorted order. Fixes bug #42854.
* providers/imap/camel-imap-command.c (imap_command_start):
Re-enable camel_verbose_debug logging.
svn path=/trunk/; revision=21173
Diffstat (limited to 'camel/providers/imap/camel-imap-command.c')
-rw-r--r-- | camel/providers/imap/camel-imap-command.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/camel/providers/imap/camel-imap-command.c b/camel/providers/imap/camel-imap-command.c index bf04075ebc..5b6293bdb6 100644 --- a/camel/providers/imap/camel-imap-command.c +++ b/camel/providers/imap/camel-imap-command.c @@ -44,7 +44,6 @@ #include <camel/camel-utf8.h> #include <camel/camel-session.h> -#define d(x) extern int camel_verbose_debug; @@ -198,7 +197,6 @@ imap_command_start (CamelImapStore *store, CamelFolder *folder, } /* Send the command */ -#if d(!)0 if (camel_verbose_debug) { const char *mask; @@ -213,7 +211,6 @@ imap_command_start (CamelImapStore *store, CamelFolder *folder, fprintf (stderr, "sending : %c%.5d %s\r\n", store->tag_prefix, store->command, mask); } -#endif nwritten = camel_stream_printf (store->ostream, "%c%.5d %s\r\n", store->tag_prefix, store->command++, cmd); |