Hello community, here is the log from the commit of package exim for openSUSE:11.4 checked in at Sat May 7 00:41:30 CEST 2011.
-------- --- old-versions/11.4/all/exim/exim.changes 2011-02-04 23:21:53.000000000 +0100 +++ 11.4/exim/exim.changes 2011-05-06 20:25:38.000000000 +0200 @@ -1,0 +2,5 @@ +Fri May 6 18:18:00 UTC 2011 - [email protected] + +- Don't pass DKIM compound log line as format string; (beo#1106); (bnc#692227). + +------------------------------------------------------------------- Package does not exist at destination yet. Using Fallback old-versions/11.4/all/exim Destination is old-versions/11.4/UPDATES/all/exim calling whatdependson for 11.4-i586 New: ---- 337e3505b0e6cd4309db6bf6062b33fa56e06cf8.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ exim.spec ++++++ --- /var/tmp/diff_new_pack.BI86XX/_old 2011-05-07 00:38:22.000000000 +0200 +++ /var/tmp/diff_new_pack.BI86XX/_new 2011-05-07 00:38:22.000000000 +0200 @@ -41,7 +41,7 @@ PreReq: %insserv_prereq %fillup_prereq /usr/sbin/useradd fileutils textutils %endif Version: 4.74 -Release: 1 +Release: 6.<RELEASE7> %if %{?build_with_mysql:1}0 BuildRequires: mysql-devel Provides: exim = %version @@ -59,6 +59,7 @@ Source31: eximstats.conf Patch: exim-4.12-tail.patch Patch1: aa097c4c00f62487128d74f65c521f9e877b184f.diff +Patch2: 337e3505b0e6cd4309db6bf6062b33fa56e06cf8.diff %if !%{?build_with_mysql:1}0 %package -n eximon @@ -126,6 +127,7 @@ %setup -q -n exim-%{version} %patch %patch1 -p1 +%patch2 -p2 # build with fPIE/pie on SUSE 10.0 or newer, or on any other platform %if %{?suse_version:%suse_version}%{?!suse_version:99999} > 930 fPIE="-fPIE" ++++++ 337e3505b0e6cd4309db6bf6062b33fa56e06cf8.diff ++++++ >From 337e3505b0e6cd4309db6bf6062b33fa56e06cf8 Mon Sep 17 00:00:00 2001 From: Tom Kistner <[email protected]> Date: Sat, 30 Apr 2011 13:20:17 +0100 Subject: [PATCH] Bugzilla #1106: Don't pass DKIM compound log line as format string --- src/src/dkim.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/src/dkim.c b/src/src/dkim.c index e25ff8c..2318cc3 100644 --- a/src/src/dkim.c +++ b/src/src/dkim.c @@ -108,7 +108,7 @@ void dkim_exim_verify_finish(void) { /* Log a line for each signature */ uschar *logmsg = string_append(NULL, &size, &ptr, 5, - string_sprintf( "DKIM: d=%s s=%s c=%s/%s a=%s ", + string_sprintf( "d=%s s=%s c=%s/%s a=%s ", sig->domain, sig->selector, (sig->canon_headers == PDKIM_CANON_SIMPLE)?"simple":"relaxed", @@ -176,7 +176,7 @@ void dkim_exim_verify_finish(void) { } logmsg[ptr] = '\0'; - log_write(0, LOG_MAIN, (char *)logmsg); + log_write(0, LOG_MAIN, "DKIM: %s", logmsg); /* Build a colon-separated list of signing domains (and identities, if present) in dkim_signers */ dkim_signers = string_append(dkim_signers, -- 1.6.3.2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
