blob: 60ea9a77c8b157f201e5e9d117066bf724047566 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- apps/openssl/openssl.c.orig Sat May 31 03:18:05 2025
+++ apps/openssl/openssl.c Sat May 31 03:18:17 2025
@@ -341,7 +341,9 @@ BIO *bio_err = NULL;
static void
openssl_startup(void)
{
+#ifndef _WIN32
signal(SIGPIPE, SIG_IGN);
+#endif
OpenSSL_add_all_algorithms();
SSL_library_init();
|