https://bugs.exim.org/show_bug.cgi?id=2181
Git Commit <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from Git Commit <[email protected]> --- Git commit: https://git.exim.org/exim.git/commitdiff/a2701501f3e077cba8d3da47e0a5522acffcee3c commit a2701501f3e077cba8d3da47e0a5522acffcee3c Author: Jeremy Harris <[email protected]> AuthorDate: Sat Oct 28 14:04:12 2017 +0100 Commit: Jeremy Harris <[email protected]> CommitDate: Sat Oct 28 14:25:26 2017 +0100 Fix build warning. Bug 2181 --- src/src/dkim.c | 2 +- src/src/macro_predef.c | 2 +- src/src/macro_predef.h | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/src/dkim.c b/src/src/dkim.c index 41540b3..d31cae9 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 ba19348..d13248c 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 aece28c..00d9537 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); -- You are receiving this mail because: You are on the CC list for the bug. -- ## List details at https://lists.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##
