diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2010-03-27 00:49:42 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2010-03-27 00:49:42 +0100 |
commit | 5a963e5d96e8f314b06ec8d52fe0b9370e212588 (patch) | |
tree | a83ccc0b901f4c000ffa988b36beae9cb82eb190 /www-servers/lighttpd/files | |
parent | bba9240061dc3f8bd15bce304f0abc421024b453 (diff) | |
download | overlay-5a963e5d96e8f314b06ec8d52fe0b9370e212588.tar.gz overlay-5a963e5d96e8f314b06ec8d52fe0b9370e212588.tar.bz2 overlay-5a963e5d96e8f314b06ec8d52fe0b9370e212588.zip |
Fix OpenSSL issue in lighttpd
Diffstat (limited to '')
-rw-r--r-- | www-servers/lighttpd/files/1.4.25-fix-openssl.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/www-servers/lighttpd/files/1.4.25-fix-openssl.patch b/www-servers/lighttpd/files/1.4.25-fix-openssl.patch new file mode 100644 index 0000000..712f158 --- /dev/null +++ b/www-servers/lighttpd/files/1.4.25-fix-openssl.patch @@ -0,0 +1,12 @@ +diff -purN orig/src/network.c lighttpd-1.4.25/src/network.c +--- orig/src/network.c 2010-01-28 10:43:33.829209750 -0500 ++++ lighttpd-1.4.25/src/network.c 2010-01-28 10:44:22.639208732 -0500 +@@ -525,7 +525,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))) { + log_error_write(srv, __FILE__, __LINE__, "ss", "SSL:", + ERR_error_string(ERR_get_error(), NULL)); + return -1; |