tags 643806 + pending thanks Dear maintainer,
I've prepared an NMU for sssd (versioned as 1.2.1-4.4) and uploaded it to DELAYED/2. Please feel free to tell me if I should delay it longer. Regards. -- Hector Oron
diff -u sssd-1.2.1/debian/changelog sssd-1.2.1/debian/changelog --- sssd-1.2.1/debian/changelog +++ sssd-1.2.1/debian/changelog @@ -1,3 +1,11 @@ +sssd (1.2.1-4.4) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS with -Werror=format-security. Thanks Philippe De Swert for patch. + (Closes: #643806). + + -- Hector Oron <zu...@debian.org> Sun, 19 Feb 2012 19:33:04 +0000 + sssd (1.2.1-4.3) unstable; urgency=medium * Non-maintainer upload. diff -u sssd-1.2.1/debian/patches/00list sssd-1.2.1/debian/patches/00list --- sssd-1.2.1/debian/patches/00list +++ sssd-1.2.1/debian/patches/00list @@ -3,0 +4 @@ +fix-literal-string-format-error.dpatch only in patch2: unchanged: --- sssd-1.2.1.orig/debian/patches/fix-literal-string-format-error.dpatch +++ sssd-1.2.1/debian/patches/fix-literal-string-format-error.dpatch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## fix-literal-string-format-error.dpatch by Hector Oron <zu...@debian.org> +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fix for DebianBug#643806 + +@DPATCH@ +diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' sssd-1.2.1~/src/db/sysdb.c sssd-1.2.1/src/db/sysdb.c +--- sssd-1.2.1~/src/db/sysdb.c 2010-06-24 05:43:49.000000000 +0000 ++++ sssd-1.2.1/src/db/sysdb.c 2012-02-19 19:37:26.000000000 +0000 +@@ -847,7 +847,7 @@ + + ret = ldb_search(ldb, mem_ctx, &res, + basedn, LDB_SCOPE_SUBTREE, +- attrs, filter); ++ "%s", attrs, "%s", filter); + if (ret != LDB_SUCCESS) { + ret = EIO; + goto done;