summaryrefslogtreecommitdiff
path: root/net-vpn/strongswan/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-01-07 00:12:10 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-01-07 00:12:10 +0000
commit86bac35ed1b4f7018bc03aea5551f7664a2b9ff4 (patch)
treed5bd82287c897c86af756be3cc21ae7f247f56eb /net-vpn/strongswan/files
parent6c0d1528e3598898fd1026a3da35ffede0a1f14a (diff)
gentoo auto-resync : 07:01:2023 - 00:12:09
Diffstat (limited to 'net-vpn/strongswan/files')
-rw-r--r--net-vpn/strongswan/files/strongswan-5.9.6-werror-security.patch20
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;
- }
-