blob: 15afb78b6aa7e79e2fa128754e22189ebd88ed5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- apps/openssl/openssl.c.orig Mon Mar 4 13:39:56 2024
+++ apps/openssl/openssl.c Mon Mar 4 13:40:15 2024
@@ -348,7 +348,9 @@
static void
openssl_startup(void)
{
+#ifndef _WIN32
signal(SIGPIPE, SIG_IGN);
+#endif
OpenSSL_add_all_algorithms();
SSL_library_init();
|