- Added ares-missing-space.patch - Added ftbfs-gcc-14-1075339.patch from debian Fixes building with GCC14+ - Added opendkim-2.10.3-incompatible-pointer-types.patch from gentoo OBS-URL: https://build.opensuse.org/package/show/server:mail/opendkim?expand=0&rev=31
17 lines
574 B
Diff
17 lines
574 B
Diff
Description: Add missing space in Authentication-Results header
|
|
Author: David Bürgin <dbuergin@gluet.ch>
|
|
Bug: https://github.com/trusteddomainproject/OpenDKIM/pull/67
|
|
|
|
--- a/opendkim/opendkim.c
|
|
+++ b/opendkim/opendkim.c
|
|
@@ -13511,7 +13511,8 @@
|
|
/* NOTREACHED */
|
|
}
|
|
|
|
- snprintf(header, sizeof header, "%s; dkim=%s (%s)",
|
|
+ snprintf((char *) header, sizeof header, "%s%s; dkim=%s (%s)",
|
|
+ cc->cctx_noleadspc ? " " : "",
|
|
authservid, ar,
|
|
dkimf_lookup_inttostr(dfc->mctx_status,
|
|
dkimf_statusstrings));
|