summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/lighttpd/openssl-0.9.8m.patch
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verison.net>2010-03-12 01:29:49 (GMT)
committerMichael Hanson <hansonorders@verison.net>2010-03-12 01:29:49 (GMT)
commitb61710bc7617505cf7d86fd300088c8fe84d2e54 (patch)
treeec7e74a00502aa5570e0c969316b4b031ac4679c /abs/core-testing/lighttpd/openssl-0.9.8m.patch
parentc06c016e53a5738325fe2ec824336b2707e6440a (diff)
downloadlinhes_pkgbuild-b61710bc7617505cf7d86fd300088c8fe84d2e54.zip
linhes_pkgbuild-b61710bc7617505cf7d86fd300088c8fe84d2e54.tar.gz
linhes_pkgbuild-b61710bc7617505cf7d86fd300088c8fe84d2e54.tar.bz2
lighttpd: add patch for openssl that was commited in lighttpd upstream.
See if it make a difference with FS#624, but I doubt it.
Diffstat (limited to 'abs/core-testing/lighttpd/openssl-0.9.8m.patch')
-rw-r--r--abs/core-testing/lighttpd/openssl-0.9.8m.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/abs/core-testing/lighttpd/openssl-0.9.8m.patch b/abs/core-testing/lighttpd/openssl-0.9.8m.patch
new file mode 100644
index 0000000..321e10b
--- /dev/null
+++ b/abs/core-testing/lighttpd/openssl-0.9.8m.patch
@@ -0,0 +1,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;