]> git.pld-linux.org Git - packages/lighttpd.git/blame_incremental - lighttpd-branch.diff
- rel 3; ssl fix
[packages/lighttpd.git] / lighttpd-branch.diff
... / ...
CommitLineData
1# Revision 2717
2Index: src/network.c
3===================================================================
4--- src/network.c (.../tags/lighttpd-1.4.26)
5+++ src/network.c (.../branches/lighttpd-1.4.x)
6@@ -525,7 +525,7 @@
7
8 if (!s->ssl_use_sslv2) {
9 /* disable SSLv2 */
10- if (SSL_OP_NO_SSLv2 != SSL_CTX_set_options(s->ssl_ctx, SSL_OP_NO_SSLv2)) {
11+ if (!(SSL_OP_NO_SSLv2 & SSL_CTX_set_options(s->ssl_ctx, SSL_OP_NO_SSLv2))) {
12 log_error_write(srv, __FILE__, __LINE__, "ss", "SSL:",
13 ERR_error_string(ERR_get_error(), NULL));
14 return -1;
15Index: configure.ac
16===================================================================
17Index: SConstruct
18===================================================================
19Index: NEWS
20===================================================================
21--- NEWS (.../tags/lighttpd-1.4.26)
22+++ NEWS (.../branches/lighttpd-1.4.x)
23@@ -3,7 +3,10 @@
24 NEWS
25 ====
26
27-- 1.4.26 -
28+- 1.4.27 -
29+ * Fix handling return value of SSL_CTX_set_options (fixes #2157, thx mlcreech)
30+
31+- 1.4.26 - 2010-02-07
32 * Fix request parser to handle packets with splitted \r\n\r\n (fixes #2105)
33 * Remove dependency on automake >= 1.11 with m4_ifdef check
34 * mod_accesslog: support %e (fixes #2113, thx presbrey)
35Index: CMakeLists.txt
36===================================================================
This page took 0.059663 seconds and 4 git commands to generate.