changeset 22548:b4f0f49d1a93

dsync: Fix typo, it's ibc not icb
author Aki Tuomi <aki.tuomi@dovecot.fi>
date Fri, 22 Sep 2017 14:08:45 +0300
parents ae84a2f539bf
children 400ff84f109d
files src/doveadm/doveadm-dsync.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/doveadm/doveadm-dsync.c	Mon Sep 25 10:28:03 2017 +0300
+++ b/src/doveadm/doveadm-dsync.c	Fri Sep 22 14:08:45 2017 +0300
@@ -485,7 +485,7 @@
 }
 
 static struct dsync_ibc *
-cmd_dsync_icb_stream_init(struct dsync_cmd_context *ctx,
+cmd_dsync_ibc_stream_init(struct dsync_cmd_context *ctx,
 			  const char *name, const char *temp_prefix)
 {
 	if (ctx->input == NULL) {
@@ -614,7 +614,7 @@
 	else {
 		string_t *temp_prefix = t_str_new(64);
 		mail_user_set_get_temp_prefix(temp_prefix, user->set);
-		ibc = cmd_dsync_icb_stream_init(ctx, ctx->remote_name,
+		ibc = cmd_dsync_ibc_stream_init(ctx, ctx->remote_name,
 						str_c(temp_prefix));
 		if (ctx->fd_err != -1) {
 			ctx->io_err = io_add(ctx->fd_err, IO_READ,
@@ -1163,7 +1163,7 @@
 	temp_prefix = t_str_new(64);
 	mail_user_set_get_temp_prefix(temp_prefix, user->set);
 
-	ibc = cmd_dsync_icb_stream_init(ctx, name, str_c(temp_prefix));
+	ibc = cmd_dsync_ibc_stream_init(ctx, name, str_c(temp_prefix));
 	brain = dsync_brain_slave_init(user, ibc, FALSE, process_title_prefix);
 
 	io_loop_run(current_ioloop);