From 86bac35ed1b4f7018bc03aea5551f7664a2b9ff4 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 7 Jan 2023 00:12:10 +0000 Subject: gentoo auto-resync : 07:01:2023 - 00:12:09 --- .../files/strongswan-5.9.6-werror-security.patch | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 net-vpn/strongswan/files/strongswan-5.9.6-werror-security.patch (limited to 'net-vpn/strongswan/files') 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 deleted file mode 100644 index 27e541439230..000000000000 --- a/net-vpn/strongswan/files/strongswan-5.9.6-werror-security.patch +++ /dev/null @@ -1,20 +0,0 @@ -https://github.com/strongswan/strongswan/commit/d23c0ea81e630af3cfda89aeeb52146c0c84c960 -https://github.com/strongswan/strongswan/issues/1025 - -From: Tobias Brunner -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; - } - -- cgit v1.2.3