diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2010-04-08 01:57:50 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2010-04-08 01:57:50 +0200 |
commit | bdf72592befa013db05df7a90ad65383b2c81438 (patch) | |
tree | 439b70e91c8cab31f84c1ddc9324967c69072af0 /www-servers/lighttpd/files/1.4.25-fix-openssl.patch | |
parent | a4ed5dd8e6a38a68b22c3c95ba9072fe6fd034af (diff) | |
download | overlay-bdf72592befa013db05df7a90ad65383b2c81438.tar.gz overlay-bdf72592befa013db05df7a90ad65383b2c81438.tar.bz2 overlay-bdf72592befa013db05df7a90ad65383b2c81438.zip |
Bumped lighttpd
Diffstat (limited to 'www-servers/lighttpd/files/1.4.25-fix-openssl.patch')
-rw-r--r-- | www-servers/lighttpd/files/1.4.25-fix-openssl.patch | 12 |
1 files changed, 0 insertions, 12 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 deleted file mode 100644 index 712f158..0000000 --- a/www-servers/lighttpd/files/1.4.25-fix-openssl.patch +++ /dev/null @@ -1,12 +0,0 @@ -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; |