https://bugs.exim.org/show_bug.cgi?id=2181
Git Commit <git@???> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |git@???
--- Comment #2 from Git Commit <git@???> ---
Git commit:
https://git.exim.org/exim.git/commitdiff/a2701501f3e077cba8d3da47e0a5522acffcee3c
commit a2701501f3e077cba8d3da47e0a5522acffcee3c
Author: Jeremy Harris <jgh146exb@???>
AuthorDate: Sat Oct 28 14:04:12 2017 +0100
Commit: Jeremy Harris <jgh146exb@???>
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.