From: Nicolas Thill Date: Tue, 30 Mar 2010 12:04:24 +0000 (+0000) Subject: [packages] lighttpd: add a patch fixing upstream issue [http://redmine.lighttpd.net... X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=368e36011f7fb5ae5280928bf1184f6c5170f2f9;p=openwrt%2Fsvn-archive%2Farchive.git [packages] lighttpd: add a patch fixing upstream issue [redmine.lighttpd.net/issues/2157 2157] with recent OpenSSL (closes: #6996) SVN-Revision: 20600 --- diff --git a/net/lighttpd/Makefile b/net/lighttpd/Makefile index 129936748d..423c8cc72e 100644 --- a/net/lighttpd/Makefile +++ b/net/lighttpd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=lighttpd PKG_VERSION:=1.4.26 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://download.lighttpd.net/lighttpd/releases-1.4.x/ diff --git a/net/lighttpd/patches/001-issue_2157.patch b/net/lighttpd/patches/001-issue_2157.patch new file mode 100644 index 0000000000..8cb3a3fc03 --- /dev/null +++ b/net/lighttpd/patches/001-issue_2157.patch @@ -0,0 +1,13 @@ +http://redmine.lighttpd.net/issues/2157 + +--- a/src/network.c ++++ b/src/network.c +@@ -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;