summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2017-10-28 14:04:12 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2017-10-28 14:25:26 +0100
commita2701501f3e077cba8d3da47e0a5522acffcee3c (patch)
tree64c3ffbd1adb3928ff54f2234038f899456b6352 /src
parent5dda37a2ea959801a0836097dc1e4ba43d78170b (diff)
Fix build warning. Bug 2181
Diffstat (limited to 'src')
-rw-r--r--src/src/dkim.c2
-rw-r--r--src/src/macro_predef.c2
-rw-r--r--src/src/macro_predef.h1
3 files changed, 3 insertions, 2 deletions
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);