blob: 321e10b7e8c3204df806732000c57a808d2fe4e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/lighttpd-1.4.26/src/network.c.orig 2010-03-12 01:19:34.000000000 +0000
+++ src/lighttpd-1.4.26/src/network.c 2010-03-12 01:20:45.000000000 +0000
@@ -525,7 +525,7 @@
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))) {
log_error_write(srv, __FILE__, __LINE__, "ss", "SSL:",
ERR_error_string(ERR_get_error(), NULL));
return -1;
|