summaryrefslogtreecommitdiffstats
path: root/main/lighttpd/fix-handling-return-value-of-SSL_CTX_set_options.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-03-17 12:16:26 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-03-17 12:23:08 +0000
commit65595048ad399d736e296201aaced08c6b0cb8e0 (patch)
tree25b94baf20c26a775f586263d93a26bfc836cf26 /main/lighttpd/fix-handling-return-value-of-SSL_CTX_set_options.patch
parentd2e0f3a8cc9e5c0dda76a2fd7aaddad0fd07f38e (diff)
downloadaports-65595048ad399d736e296201aaced08c6b0cb8e0.tar.bz2
aports-65595048ad399d736e296201aaced08c6b0cb8e0.tar.xz
main/lighttpd: fix handling of SSL_CTX_set_options() return value
fixes #329 (cherry picked from commit 192b8fad759488bbe2fea1b43acda638eb6ebe85)
Diffstat (limited to 'main/lighttpd/fix-handling-return-value-of-SSL_CTX_set_options.patch')
-rw-r--r--main/lighttpd/fix-handling-return-value-of-SSL_CTX_set_options.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/main/lighttpd/fix-handling-return-value-of-SSL_CTX_set_options.patch b/main/lighttpd/fix-handling-return-value-of-SSL_CTX_set_options.patch
new file mode 100644
index 00000000..40eab25e
--- /dev/null
+++ b/main/lighttpd/fix-handling-return-value-of-SSL_CTX_set_options.patch
@@ -0,0 +1,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;