From c79c8c1d0f76165cf94e32264785ac76a8f8f5e9 Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Fri, 22 Sep 2017 14:08:45 +0300 Subject: [PATCH] dsync: Fix typo, it's ibc not icb --- src/doveadm/doveadm-dsync.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/doveadm/doveadm-dsync.c b/src/doveadm/doveadm-dsync.c index 3db44c5936..5ccf3d2fca 100644 --- a/src/doveadm/doveadm-dsync.c +++ b/src/doveadm/doveadm-dsync.c @@ -489,7 +489,7 @@ parse_ssh_location(const char *location, const char *username) } 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) { @@ -618,7 +618,7 @@ cmd_dsync_run(struct doveadm_mail_cmd_context *_ctx, struct mail_user *user) 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, @@ -1164,7 +1164,7 @@ cmd_dsync_server_run(struct doveadm_mail_cmd_context *_ctx, 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); -- 2.47.3