From: Jeremy Harris Date: Sat, 28 Oct 2017 13:04:12 +0000 (+0100) Subject: Fix build warning. Bug 2181 X-Git-Tag: exim-4_90_RC2~28 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/a2701501f3e077cba8d3da47e0a5522acffcee3c Fix build warning. Bug 2181 --- diff --git a/src/src/dkim.c b/src/src/dkim.c index 41540b39d..d31cae9c7 100644 --- a/src/src/dkim.c +++ b/src/src/dkim.c @@ -18,7 +18,7 @@ # include "macro_predef.h" void -dkim_params(void) +params_dkim(void) { builtin_macro_create_var(US"_DKIM_SIGN_HEADERS", US PDKIM_DEFAULT_SIGN_HEADERS); } diff --git a/src/src/macro_predef.c b/src/src/macro_predef.c index ba1934885..d13248ce4 100644 --- a/src/src/macro_predef.c +++ b/src/src/macro_predef.c @@ -277,7 +277,7 @@ static void params(void) { #ifndef DISABLE_DKIM -dkim_params(); +params_dkim(); #endif } diff --git a/src/src/macro_predef.h b/src/src/macro_predef.h index aece28cc7..00d9537ca 100644 --- a/src/src/macro_predef.h +++ b/src/src/macro_predef.h @@ -16,4 +16,5 @@ extern void options_main(void); extern void options_routers(void); extern void options_transports(void); extern void options_auths(void); +extern void params_dkim(void);