Skip to content

Commit

Permalink
[Minor] Fix length argument
Browse files Browse the repository at this point in the history
  • Loading branch information
vstakhov committed Feb 13, 2020
1 parent 01c464c commit cee9e2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libserver/dkim.c
Original file line number Diff line number Diff line change
Expand Up @@ -2601,7 +2601,7 @@ rspamd_dkim_check (rspamd_dkim_context_t *ctx,
"body length %d->%d; headers length %d; d=%s; s=%s",
rspamd_dkim_type_to_string (ctx->common.type),
(gint)dlen, raw_digest,
(gint)dlen, ctx->b,
(gint)ctx->blen, ctx->b,
(gint)(body_end - body_start), ctx->common.body_canonicalised,
ctx->common.headers_canonicalised,
ctx->domain, ctx->selector);
Expand All @@ -2615,7 +2615,7 @@ rspamd_dkim_check (rspamd_dkim_context_t *ctx,
"body length %d->%d; headers length %d; d=%s; s=%s",
rspamd_dkim_type_to_string (ctx->common.type),
(gint)dlen, raw_digest,
(gint)dlen, ctx->b,
(gint)ctx->blen, ctx->b,
(gint)(body_end - body_start), ctx->common.body_canonicalised,
ctx->common.headers_canonicalised,
ctx->domain, ctx->selector);
Expand All @@ -2632,7 +2632,7 @@ rspamd_dkim_check (rspamd_dkim_context_t *ctx,
"body length %d->%d; headers length %d; d=%s; s=%s",
rspamd_dkim_type_to_string (ctx->common.type),
(gint)dlen, raw_digest,
(gint)dlen, ctx->b,
(gint)ctx->blen, ctx->b,
(gint)(body_end - body_start), ctx->common.body_canonicalised,
ctx->common.headers_canonicalised,
ctx->domain, ctx->selector);
Expand Down

0 comments on commit cee9e2c

Please sign in to comment.