diff options
author | John Helmert III <ajak@gentoo.org> | 2023-01-06 11:43:24 -0600 |
---|---|---|
committer | John Helmert III <ajak@gentoo.org> | 2023-01-06 11:43:34 -0600 |
commit | 7387260e58f7f39705fa2c03024201eee834e8e9 (patch) | |
tree | dbb484a78a3864d810799a846fa52baae82e021f /net-vpn/strongswan/files/strongswan-5.9.6-werror-security.patch | |
parent | www-apps/zeppelin-bin: drop 0.8.2-r1 (diff) | |
download | gentoo-7387260e58f7f39705fa2c03024201eee834e8e9.tar.gz gentoo-7387260e58f7f39705fa2c03024201eee834e8e9.tar.bz2 gentoo-7387260e58f7f39705fa2c03024201eee834e8e9.zip |
net-vpn/strongswan: drop 5.9.6-r1, 5.9.7
Bug: https://bugs.gentoo.org/818841
Bug: https://bugs.gentoo.org/832460
Bug: https://bugs.gentoo.org/878887
Signed-off-by: John Helmert III <ajak@gentoo.org>
Diffstat (limited to 'net-vpn/strongswan/files/strongswan-5.9.6-werror-security.patch')
-rw-r--r-- | net-vpn/strongswan/files/strongswan-5.9.6-werror-security.patch | 20 |
1 files changed, 0 insertions, 20 deletions
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 <tobias@strongswan.org> -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; - } - |