summaryrefslogtreecommitdiffstats
path: root/main/lighttpd/fix-handling-return-value-of-SSL_CTX_set_options.patch
blob: 40eab25e5076eee6bb6da963c3dbc492b60da55a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Index: branches/lighttpd-1.4.x/src/network.c
===================================================================
--- branches/lighttpd-1.4.x/src/network.c	(revision 2715)
+++ branches/lighttpd-1.4.x/src/network.c	(revision 2716)
@@ -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;