summaryrefslogtreecommitdiff
path: root/security/sslwrap/files/patch-s_server.c
diff options
context:
space:
mode:
authorBartek Rutkowski <robak@FreeBSD.org>2015-04-03 18:28:55 +0000
committerBartek Rutkowski <robak@FreeBSD.org>2015-04-03 18:28:55 +0000
commitb70a676656c36e38d402e840d51e75c1789fdf98 (patch)
treecf3d37a2e7f84301dfabd1c3a1bbdc972e2d9a8c /security/sslwrap/files/patch-s_server.c
parent- Update to upstream version 11.3 (diff)
security/sslwrap: fix build with OpenSSL libs without SSLv2
PR: 198400 Submitted by: Bernard Spil <spil.oss@gmail.com>
Notes
Notes: svn path=/head/; revision=383166
Diffstat (limited to 'security/sslwrap/files/patch-s_server.c')
-rw-r--r--security/sslwrap/files/patch-s_server.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/security/sslwrap/files/patch-s_server.c b/security/sslwrap/files/patch-s_server.c
new file mode 100644
index 000000000000..64c86f1c3f1f
--- /dev/null
+++ b/security/sslwrap/files/patch-s_server.c
@@ -0,0 +1,15 @@
+--- s_server.c.orig 2000-11-11 22:11:18 UTC
++++ s_server.c
+@@ -137,6 +137,12 @@ static RSA MS_CALLBACK *tmp_rsa_cb(SSL *
+ , int keylen
+ #endif
+ );
++#if defined(OPENSSL_NO_SSL2)
++#define NO_SSL2
++#endif
++#if defined(OPENSSL_NO_SSL3)
++#define NO_SSL3
++#endif
+ static int sv_body(char *hostname, int sin, int sout);
+ static void close_accept_socket(void );
+ static void sv_usage(void);