Fix build warning. Bug 2181
authorJeremy Harris <jgh146exb@wizmail.org>
Sat, 28 Oct 2017 13:04:12 +0000 (14:04 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Sat, 28 Oct 2017 13:25:26 +0000 (14:25 +0100)
src/src/dkim.c
src/src/macro_predef.c
src/src/macro_predef.h

index 41540b39d396d71a300394c27baa764ff33d491a..d31cae9c73fef507946dbcee6f9e1b4fc41f2176 100644 (file)
@@ -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);
 }
index ba1934885b4d6cdefcb105a1c6be68a3d24c08c1..d13248ce43e1a95c0253faf2f7e6f25307cbd59c 100644 (file)
@@ -277,7 +277,7 @@ static void
 params(void)
 {
 #ifndef DISABLE_DKIM
-dkim_params();
+params_dkim();
 #endif
 }
 
index aece28cc75a0d2f73e0a0c94ff0d83d8d6f7c492..00d9537ca3f388375e2ca6b9cdc4a4e4ee7a4aa4 100644 (file)
@@ -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);