FreeBSD Bugzilla – Attachment 169967 Details for
Bug 209266
www/lighttpd broken with libressl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
Fix SSLv[23] checks
patch-src_network.c (text/x-csrc), 887 bytes, created by
Christian Heckendorf
on 2016-05-04 15:04:39 UTC
(
hide
)
Description:
Fix SSLv[23] checks
Filename:
MIME Type:
Creator:
Christian Heckendorf
Created:
2016-05-04 15:04:39 UTC
Size:
887 bytes
patch
obsolete
>--- src/network.c.orig 2015-12-04 21:13:47 UTC >+++ src/network.c >@@ -769,7 +769,7 @@ int network_init(server *srv) { > > if (!s->ssl_use_sslv2) { > /* disable SSLv2 */ >- if (!(SSL_OP_NO_SSLv2 & SSL_CTX_set_options(s->ssl_ctx, SSL_OP_NO_SSLv2))) { >+ if ((SSL_OP_NO_SSLv2 & SSL_CTX_set_options(s->ssl_ctx, SSL_OP_NO_SSLv2)) != SSL_OP_NO_SSLv2) { > log_error_write(srv, __FILE__, __LINE__, "ss", "SSL:", > ERR_error_string(ERR_get_error(), NULL)); > return -1; >@@ -778,7 +778,7 @@ int network_init(server *srv) { > > if (!s->ssl_use_sslv3) { > /* disable SSLv3 */ >- if (!(SSL_OP_NO_SSLv3 & SSL_CTX_set_options(s->ssl_ctx, SSL_OP_NO_SSLv3))) { >+ if ((SSL_OP_NO_SSLv3 & SSL_CTX_set_options(s->ssl_ctx, SSL_OP_NO_SSLv3)) != SSL_OP_NO_SSLv3) { > log_error_write(srv, __FILE__, __LINE__, "ss", "SSL:", > ERR_error_string(ERR_get_error(), NULL)); > return -1;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 209266
: 169967 |
170189
|
170202