aboutsummaryrefslogtreecommitdiff
path: root/libs/libwebsockets/patches/020-gcc12.patch
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libwebsockets/patches/020-gcc12.patch')
-rw-r--r--libs/libwebsockets/patches/020-gcc12.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/libs/libwebsockets/patches/020-gcc12.patch b/libs/libwebsockets/patches/020-gcc12.patch
deleted file mode 100644
index ee6dfe5ad..000000000
--- a/libs/libwebsockets/patches/020-gcc12.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-From 6352fee2194a41179a808e9e2b805e0f5c86f8cf Mon Sep 17 00:00:00 2001
-From: Andy Green <andy@warmcat.com>
-Date: Sun, 16 Jan 2022 06:49:38 +0000
-Subject: [PATCH] sort-dns: fix scope comparison
-
-https://github.com/warmcat/libwebsockets/issues/2537
----
- lib/core-net/client/sort-dns.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/lib/core-net/client/sort-dns.c
-+++ b/lib/core-net/client/sort-dns.c
-@@ -406,7 +406,7 @@ lws_sort_dns_dcomp(const lws_dns_sort_t
- */
-
- scopea = lws_ipv6_unicast_scope(to_v6_sa(&da->dest));
-- scopeb = lws_ipv6_unicast_scope(to_v6_sa(&db));
-+ scopeb = lws_ipv6_unicast_scope(to_v6_sa(&db->dest));
- scope_srca = lws_ipv6_unicast_scope(to_v6_sa(&da->source));
- scope_srcb = lws_ipv6_unicast_scope(to_v6_sa(&db->source));
-