From: Timo Sirainen Date: Fri, 22 Jul 2011 10:09:14 +0000 (+0300) Subject: indexer: Send OK reply to client with the given tag. X-Git-Tag: 2.1.alpha1~228 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d616fa4dc2b6eac4d562e377ae619d714a76624a;p=thirdparty%2Fdovecot%2Fcore.git indexer: Send OK reply to client with the given tag. --- diff --git a/src/indexer/indexer-client.c b/src/indexer/indexer-client.c index f09d757446..443a4a1aaa 100644 --- a/src/indexer/indexer-client.c +++ b/src/indexer/indexer-client.c @@ -85,7 +85,7 @@ indexer_client_request_queue(struct indexer_client *client, bool append, } indexer_queue_append(client->queue, append, args[1], args[2], ctx); - o_stream_send_str(client->output, "OK\n"); + o_stream_send_str(client->output, t_strdup_printf("%u\tOK\n", tag)); return 0; }