summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2010-03-14 21:33:12 +0000
committerThilo Bangert <bangert@gentoo.org>2010-03-14 21:33:12 +0000
commite58fe84de79ded4e43fffe87bcd7e3ab198d1d6e (patch)
tree442e909db887a5bf70fd2b00acad261d3181d670 /www-servers/lighttpd/files
parentdrop use-masks for darcs:doc and subversion:nowebdav, we do have texlive for ... (diff)
downloadhistorical-e58fe84de79ded4e43fffe87bcd7e3ab198d1d6e.tar.gz
historical-e58fe84de79ded4e43fffe87bcd7e3ab198d1d6e.tar.bz2
historical-e58fe84de79ded4e43fffe87bcd7e3ab198d1d6e.zip
add patch which fixes ssl support for newer versions of openssl (bug #308405)
Package-Manager: portage-2.2_rc67/cvs/Linux i686
Diffstat (limited to 'www-servers/lighttpd/files')
-rw-r--r--www-servers/lighttpd/files/1.4.26-fix-ssl-return-check-r2716.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/www-servers/lighttpd/files/1.4.26-fix-ssl-return-check-r2716.patch b/www-servers/lighttpd/files/1.4.26-fix-ssl-return-check-r2716.patch
new file mode 100644
index 000000000000..1ef8a1c84a3c
--- /dev/null
+++ b/www-servers/lighttpd/files/1.4.26-fix-ssl-return-check-r2716.patch
@@ -0,0 +1,16 @@
+fix check of return value
+from upstream svn repo
+
+Index: network.c
+===================================================================
+--- src/network.c (revision 2715)
++++ 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;