[packages/sssd] - rel 5; build fixed

arekm arekm at pld-linux.org
Wed Jul 4 19:39:27 CEST 2018


commit 1dbfdfbef6b01bcd4dbd51fc391cab2921d4f4b5
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date:   Wed Jul 4 19:39:20 2018 +0200

    - rel 5; build fixed

 format.patch | 33 +++++++++++++++++++++++++++++++++
 sssd.spec    |  4 +++-
 2 files changed, 36 insertions(+), 1 deletion(-)
---
diff --git a/sssd.spec b/sssd.spec
index a3156b5..bb9c4fa 100644
--- a/sssd.spec
+++ b/sssd.spec
@@ -14,7 +14,7 @@ Summary:	System Security Services Daemon
 Summary(pl.UTF-8):	System Security Services Daemon - demon usług bezpieczeństwa systemu
 Name:		sssd
 Version:	1.13.4
-Release:	4
+Release:	5
 License:	GPL v3+
 Group:		Applications/System
 Source0:	https://fedorahosted.org/released/sssd/%{name}-%{version}.tar.gz
@@ -24,6 +24,7 @@ Patch0:		%{name}-python.patch
 Patch1:		%{name}-heimdal.patch
 Patch2:		%{name}-systemd.patch
 Patch3:		%{name}-link.patch
+Patch4:		format.patch
 URL:		https://fedorahosted.org/sssd/
 BuildRequires:	augeas-devel >= 1.0.0
 BuildRequires:	autoconf >= 2.59
@@ -460,6 +461,7 @@ Pliki nagłówkowe biblioteki libsss_simpleifp.
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 %{__libtoolize}
diff --git a/format.patch b/format.patch
new file mode 100644
index 0000000..8fb8d3a
--- /dev/null
+++ b/format.patch
@@ -0,0 +1,33 @@
+From 038011b9121fff5ce0801e7ab3b49791079b91ac Mon Sep 17 00:00:00 2001
+From: Lukas Slebodnik <lslebodn at redhat.com>
+Date: Thu, 1 Dec 2016 13:13:21 +0100
+Subject: [PATCH] SIFP: Fix warning format-security
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+dbus-1.11.8 added attributes for format string check to
+few functions in public header files. And therefore there is a warning.
+
+src/lib/sifp/sss_sifp_utils.c: In function ‘sss_sifp_set_io_error’:
+src/lib/sifp/sss_sifp_utils.c:44:5: error: format not a string literal
+and no format arguments [-Werror=format-security]
+     dbus_set_error(ctx->io_error, error->name, error->message);
+          ^~~~~~~~~~~~~~
+---
+ src/lib/sifp/sss_sifp_utils.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/lib/sifp/sss_sifp_utils.c b/src/lib/sifp/sss_sifp_utils.c
+index ccd0518..dcac71f 100644
+--- a/src/lib/sifp/sss_sifp_utils.c
++++ b/src/lib/sifp/sss_sifp_utils.c
+@@ -41,7 +41,7 @@ void sss_sifp_set_io_error(sss_sifp_ctx *ctx, DBusError *error)
+ {
+     dbus_error_free(ctx->io_error);
+     dbus_error_init(ctx->io_error);
+-    dbus_set_error(ctx->io_error, error->name, error->message);
++    dbus_set_error(ctx->io_error, error->name, "%s", error->message);
+ }
+ 
+ char * sss_sifp_strdup(sss_sifp_ctx *ctx, const char *str)
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/sssd.git/commitdiff/1dbfdfbef6b01bcd4dbd51fc391cab2921d4f4b5



More information about the pld-cvs-commit mailing list