From: Rosen Penev Date: Thu, 9 Jun 2022 01:10:04 +0000 (-0700) Subject: cshark: fix compilation with GCC12 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=2fd7ee49a53ef2ebf11c703a30f2316692dde05d;p=openwrt-packages.git cshark: fix compilation with GCC12 Signed-off-by: Rosen Penev --- diff --git a/net/cshark/patches/010-gcc12.patch b/net/cshark/patches/010-gcc12.patch new file mode 100644 index 000000000..c36b3e7e4 --- /dev/null +++ b/net/cshark/patches/010-gcc12.patch @@ -0,0 +1,11 @@ +--- a/src/uclient.c ++++ b/src/uclient.c +@@ -150,7 +150,7 @@ static void cshark_ustream_ssl_init(void + + ssl_ctx = ssl_ops->context_new(false); + +- if (config.ca) ++ if (strlen(config.ca)) + ssl_ops->context_add_ca_crt_file(ssl_ctx, config.ca); + } +