tlsdate: drop sslv3 support (libressl-2.3 fix)
This commit is contained in:
parent
e7c3d943fc
commit
1e04805a5e
2 changed files with 58 additions and 1 deletions
57
srcpkgs/tlsdate/patches/libressl-no-sslv3.patch
Normal file
57
srcpkgs/tlsdate/patches/libressl-no-sslv3.patch
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
--- src/tlsdate.c.orig 2016-03-30 23:41:39.121031885 +0200
|
||||||
|
+++ src/tlsdate.c 2016-03-30 23:41:49.442032351 +0200
|
||||||
|
@@ -88,7 +88,7 @@
|
||||||
|
" [-n|--dont-set-clock]\n"
|
||||||
|
" [-H|--host] [hostname|ip]\n"
|
||||||
|
" [-p|--port] [port number]\n"
|
||||||
|
- " [-P|--protocol] [sslv23|sslv3|tlsv1]\n"
|
||||||
|
+ " [-P|--protocol] [sslv23|tlsv1]\n"
|
||||||
|
" [-C|--certcontainer] [dirname|filename]\n"
|
||||||
|
" [-v|--verbose]\n"
|
||||||
|
" [-V|--showtime] [human|raw]\n"
|
||||||
|
--- man/tlsdate.1.orig 2016-03-30 23:42:18.100033647 +0200
|
||||||
|
+++ man/tlsdate.1 2016-03-30 23:42:35.659034441 +0200
|
||||||
|
@@ -5,7 +5,7 @@
|
||||||
|
.SH NAME
|
||||||
|
tlsdate \- secure parasitic rdate replacement
|
||||||
|
.SH SYNOPSIS
|
||||||
|
-.B tlsdate [\-hnvVstlw] [\-H [hostname]] [\-p [port]] [\-P [sslv23|sslv3|tlsv1]] \
|
||||||
|
+.B tlsdate [\-hnvVstlw] [\-H [hostname]] [\-p [port]] [\-P [sslv23|tlsv1]] \
|
||||||
|
[\-\-certdir [dirname]] [\-x [\-\-proxy] proxy\-type://proxyhost:proxyport]
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.B tlsdate
|
||||||
|
@@ -30,7 +30,7 @@
|
||||||
|
Do not set the system clock to the time of the remote server
|
||||||
|
.IP "\-p | \-\-port [port]"
|
||||||
|
Set remote port (default: '443')
|
||||||
|
-.IP "\-P | \-\-protocol [sslv23|sslv3|tlsv1]"
|
||||||
|
+.IP "\-P | \-\-protocol [sslv23|tlsv1]"
|
||||||
|
Set protocol to use when communicating with server (default: 'tlsv1')
|
||||||
|
.IP "\-C | \-\-certdir [dirname]"
|
||||||
|
Set the local directory where certificates are located
|
||||||
|
--- src/tlsdate-helper-plan9.c.orig 2016-03-30 23:43:12.577036110 +0200
|
||||||
|
+++ src/tlsdate-helper-plan9.c 2016-03-30 23:43:32.403037006 +0200
|
||||||
|
@@ -978,10 +978,6 @@
|
||||||
|
{
|
||||||
|
verb ("V: using SSLv23_client_method()\n");
|
||||||
|
ctx = SSL_CTX_new(SSLv23_client_method());
|
||||||
|
- } else if (0 == strcmp("sslv3", protocol))
|
||||||
|
- {
|
||||||
|
- verb ("V: using SSLv3_client_method()\n");
|
||||||
|
- ctx = SSL_CTX_new(SSLv3_client_method());
|
||||||
|
} else if (0 == strcmp("tlsv1", protocol))
|
||||||
|
{
|
||||||
|
verb ("V: using TLSv1_client_method()\n");
|
||||||
|
--- src/tlsdate-helper.c.orig 2016-03-30 23:33:02.056008510 +0200
|
||||||
|
+++ src/tlsdate-helper.c 2016-03-30 23:34:46.400013227 +0200
|
||||||
|
@@ -1133,10 +1133,6 @@
|
||||||
|
{
|
||||||
|
verb ("V: using SSLv23_client_method()");
|
||||||
|
ctx = SSL_CTX_new(SSLv23_client_method());
|
||||||
|
- } else if (0 == strcmp("sslv3", protocol))
|
||||||
|
- {
|
||||||
|
- verb ("V: using SSLv3_client_method()");
|
||||||
|
- ctx = SSL_CTX_new(SSLv3_client_method());
|
||||||
|
} else if (0 == strcmp("tlsv1", protocol))
|
||||||
|
{
|
||||||
|
verb ("V: using TLSv1_client_method()");
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'tlsdate'
|
# Template file for 'tlsdate'
|
||||||
pkgname=tlsdate
|
pkgname=tlsdate
|
||||||
version=0.0.13
|
version=0.0.13
|
||||||
revision=4
|
revision=5
|
||||||
wrksrc="${pkgname}-${pkgname}-${version}"
|
wrksrc="${pkgname}-${pkgname}-${version}"
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--sbindir=/usr/bin
|
configure_args="--sbindir=/usr/bin
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue