commit: 1ba8e170537551e7d13f2f7920bf33f8cc766184 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu May 19 02:19:00 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu May 19 02:19:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba8e170
net-vpn/strongswan: add false-positive wformat-security patch from upstream Signed-off-by: Sam James <sam <AT> gentoo.org> .../files/strongswan-5.9.6-werror-security.patch | 20 ++++++++++++++++++++ net-vpn/strongswan/strongswan-5.9.6.ebuild | 4 ++++ 2 files changed, 24 insertions(+) diff --git a/net-vpn/strongswan/files/strongswan-5.9.6-werror-security.patch b/net-vpn/strongswan/files/strongswan-5.9.6-werror-security.patch new file mode 100644 index 000000000000..27e541439230 --- /dev/null +++ b/net-vpn/strongswan/files/strongswan-5.9.6-werror-security.patch @@ -0,0 +1,20 @@ +https://github.com/strongswan/strongswan/commit/d23c0ea81e630af3cfda89aeeb52146c0c84c960 +https://github.com/strongswan/strongswan/issues/1025 + +From: Tobias Brunner <[email protected]> +Date: Mon, 2 May 2022 09:31:49 +0200 +Subject: [PATCH] enum: Fix compiler warning + +Closes strongswan/strongswan#1025 +--- a/src/libstrongswan/utils/enum.c ++++ b/src/libstrongswan/utils/enum.c +@@ -97,7 +97,7 @@ char *enum_flags_to_string(enum_name_t *e, u_int val, char *buf, size_t len) + return buf; + } + +- if (snprintf(buf, len, e->names[0]) >= len) ++ if (snprintf(buf, len, "%s", e->names[0]) >= len) + { + return NULL; + } + diff --git a/net-vpn/strongswan/strongswan-5.9.6.ebuild b/net-vpn/strongswan/strongswan-5.9.6.ebuild index 156d0149f594..9de7b103de17 100644 --- a/net-vpn/strongswan/strongswan-5.9.6.ebuild +++ b/net-vpn/strongswan/strongswan-5.9.6.ebuild @@ -55,6 +55,10 @@ RDEPEND="${COMMON_DEPEND} UGID="ipsec" +PATCHES=( + "${FILESDIR}"/${P}-werror-security.patch +) + pkg_setup() { linux-info_pkg_setup
