diff options
author | Martin Matuska <mm@FreeBSD.org> | 2010-08-15 21:48:12 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2010-08-15 21:48:12 +0000 |
commit | d9a32ecab5d64cf44d8f6fb5d9bd12a790ed2c14 (patch) | |
tree | 4b2a783a11fc47d7711795331cb12e5f0ee3589f /www/lighttpd/files/patch-src__network.c | |
parent | - Update graphics/wxsvg to 1.0.5 and wx 2.8 which thus needs an Mk/bsd.wx.mk (diff) |
- Update to 1.4.27
- Add fdevent kqueue patch from upstream (SVN revision 2764)
- Add libev support (optional)
- Do not depend on spawn-fcgi by default
- Add IPv4 and IPv6 sockets to configuration example
Diffstat (limited to 'www/lighttpd/files/patch-src__network.c')
-rw-r--r-- | www/lighttpd/files/patch-src__network.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/www/lighttpd/files/patch-src__network.c b/www/lighttpd/files/patch-src__network.c deleted file mode 100644 index 996d8002a9aa..000000000000 --- a/www/lighttpd/files/patch-src__network.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/network.c 2010-01-28 10:43:33.829209750 -0500 -+++ 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; |