blob: 078b3ae07d856e6f5cf643a0a4dd31916875a98f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- apps/openssl/openssl.c.orig Fri Mar 13 09:08:38 2026
+++ apps/openssl/openssl.c Fri Mar 13 09:08:46 2026
@@ -345,7 +345,9 @@ BIO *bio_err = NULL;
static void
openssl_startup(void)
{
+#ifndef _WIN32
signal(SIGPIPE, SIG_IGN);
+#endif
OpenSSL_add_all_algorithms();
SSL_library_init();
|