changeset 7055:428884a4e297 HEAD

Removed debugging code.
author Timo Sirainen <tss@iki.fi>
date Sat, 29 Dec 2007 06:14:26 +0200
parents 4c6e9edfd4ce
children 097c70cfa55e
files src/imap/imap-sync.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/imap/imap-sync.c	Sat Dec 29 06:13:35 2007 +0200
+++ b/src/imap/imap-sync.c	Sat Dec 29 06:14:26 2007 +0200
@@ -95,7 +95,8 @@
 			client_send_line(ctx->client,
 				t_strdup_printf("* %u EXISTS", status.messages));
 		}
-		if (status.recent != ctx->client->recent_count && !ctx->no_newmail) {
+		if (status.recent != ctx->client->recent_count &&
+		    !ctx->no_newmail) {
 			ctx->client->recent_count = status.recent;
 			client_send_line(ctx->client,
 				t_strdup_printf("* %u RECENT", status.recent));
@@ -132,7 +133,6 @@
 			/* a new keyword. notify the client. */
 			imap_sync_send_changed_keywords(ctx);
 			all_names = array_get(ctx->keywords, &all_count);
-			i_error("whee, added %d/%d == %s", kw_indexes[i], all_count, all_names[kw_indexes[i]]);
 		}
 		i_assert(kw_indexes[i] < all_count);
 		array_append(keyword_names, &all_names[kw_indexes[i]], 1);