]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
CONTEXT=SEARCH: Removed extra ')' from ESEARCH replies.
authorTimo Sirainen <tss@iki.fi>
Wed, 11 Jun 2008 23:15:38 +0000 (02:15 +0300)
committerTimo Sirainen <tss@iki.fi>
Wed, 11 Jun 2008 23:15:38 +0000 (02:15 +0300)
--HG--
branch : HEAD

src/imap/imap-sync.c

index d9974bbda766bb9ef673b377a95c341f40f952c8..9934db15fb827a6f12974ebcd5d4b96485c3ec80 100644 (file)
@@ -102,7 +102,7 @@ imap_sync_send_search_update(struct imap_sync_context *ctx,
                imap_write_seq_range(cmd, &ctx->search_adds);
                str_append_c(cmd, ')');
        }
-       str_append(cmd, ")\r\n");
+       str_append(cmd, "\r\n");
        o_stream_send(ctx->client->output, str_data(cmd), str_len(cmd));
 }