packages/net/squid/patches/002-no_sslv2.patch
florian 4bb74a232c [package] update squid to 2.7STABLE9, thanks to Tomasz Mon
git-svn-id: svn://svn.openwrt.org/openwrt/packages@22420 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-07-30 22:56:47 +00:00

16 lines
408 B
Diff

--- a/src/ssl_support.c
+++ b/src/ssl_support.c
@@ -446,10 +446,12 @@ sslCreateServerContext(const char *certf
ERR_clear_error();
debug(83, 1) ("Initialising SSL.\n");
switch (version) {
+#ifndef OPENSSL_NO_SSL2
case 2:
debug(83, 5) ("Using SSLv2.\n");
method = SSLv2_server_method();
break;
+#endif
case 3:
debug(83, 5) ("Using SSLv3.\n");
method = SSLv3_server_method();