From: Martti Rannanjärvi Date: Wed, 5 Jul 2017 11:38:19 +0000 (+0300) Subject: doveadm: Fix a typo in doveadm-print-flow function name X-Git-Tag: 2.3.0.rc1~1313 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f75c29549038b056ee3cfef46bdb2980e75ee37;p=thirdparty%2Fdovecot%2Fcore.git doveadm: Fix a typo in doveadm-print-flow function name doveadm_print_flow_print_heder() -> doveadm_print_flow_print_header() --- diff --git a/src/doveadm/doveadm-print-flow.c b/src/doveadm/doveadm-print-flow.c index a72e6bcdaa..5f794ac92c 100644 --- a/src/doveadm/doveadm-print-flow.c +++ b/src/doveadm/doveadm-print-flow.c @@ -40,7 +40,7 @@ static void flow_next_hdr(void) } } -static void doveadm_print_flow_print_heder(const struct doveadm_print_flow_header *hdr) +static void doveadm_print_flow_print_header(const struct doveadm_print_flow_header *hdr) { if ((hdr->flags & DOVEADM_PRINT_HEADER_FLAG_HIDE_TITLE) == 0) { o_stream_nsend_str(doveadm_print_ostream, hdr->title); @@ -53,7 +53,7 @@ static void doveadm_print_flow_print(const char *value) const struct doveadm_print_flow_header *hdr = array_idx(&ctx->headers, ctx->header_idx); - doveadm_print_flow_print_heder(hdr); + doveadm_print_flow_print_header(hdr); o_stream_nsend_str(doveadm_print_ostream, value); flow_next_hdr(); } @@ -66,7 +66,7 @@ doveadm_print_flow_print_stream(const unsigned char *value, size_t size) if (!ctx->streaming) { ctx->streaming = TRUE; - doveadm_print_flow_print_heder(hdr); + doveadm_print_flow_print_header(hdr); } o_stream_nsend(doveadm_print_ostream, value, size); if (size == 0) {