mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-08-01 23:17:50 +00:00
libwebsockets: fix build issue with gcc-13
This commit is contained in:
parent
d287ee22cc
commit
2125c68aad
@ -0,0 +1,28 @@
|
|||||||
|
From 722e44cb5b74cae206f47a6dc0d985eba8ed1b2e Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Thu, 26 Jan 2023 17:17:49 -0800
|
||||||
|
Subject: [PATCH] Fix -Werror=enum-int-mismatch in
|
||||||
|
lws_tls_server_abort_connection()
|
||||||
|
|
||||||
|
GCC 13 is findinf this function signature mismatch.
|
||||||
|
|
||||||
|
../git/lib/tls/openssl/openssl-server.c:713:1: error: conflicting types for 'lws_tls_server_abort_connection' due to enum/integer mismatch; have 'int(struct lws *)' [-Werror=enum-int-mismatch]
|
||||||
|
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
lib/tls/openssl/openssl-server.c | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/lib/tls/openssl/openssl-server.c b/lib/tls/openssl/openssl-server.c
|
||||||
|
index f2e77324f..43d65e030 100644
|
||||||
|
--- a/lib/tls/openssl/openssl-server.c
|
||||||
|
+++ b/lib/tls/openssl/openssl-server.c
|
||||||
|
@@ -699,7 +699,7 @@ lws_tls_server_new_nonblocking(struct lws *wsi, lws_sockfd_type accept_fd)
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
-int
|
||||||
|
+enum lws_ssl_capable_status
|
||||||
|
lws_tls_server_abort_connection(struct lws *wsi)
|
||||||
|
{
|
||||||
|
if (wsi->tls.use_ssl)
|
Loading…
x
Reference in New Issue
Block a user