Skip to content

Commit

Permalink
dsync: Fix typo, it's ibc not icb
Browse files Browse the repository at this point in the history
  • Loading branch information
cmouse authored and villesavolainen committed Oct 2, 2017
1 parent ff0a0c9 commit d1c2f79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/doveadm/doveadm-dsync.c
Expand Up @@ -485,7 +485,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) {
Expand Down Expand Up @@ -614,7 +614,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,
Expand Down Expand Up @@ -1163,7 +1163,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);
Expand Down

0 comments on commit d1c2f79

Please sign in to comment.