diff options
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/0100_spelling.patch | 2 | ||||
-rw-r--r-- | debian/patches/0130_openssl.patch | 19 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 21 insertions, 1 deletions
diff --git a/debian/patches/0100_spelling.patch b/debian/patches/0100_spelling.patch index 2705f6b..c65916b 100644 --- a/debian/patches/0100_spelling.patch +++ b/debian/patches/0100_spelling.patch @@ -1,6 +1,6 @@ Description: correct some typos Author: Jörg Frings-Fürst <debian@jff-webhosting.net> -Last-Update: 2016-10-11 +Last-Update: 2017-08-26 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ Index: trunk/spectro/dispcal.c diff --git a/debian/patches/0130_openssl.patch b/debian/patches/0130_openssl.patch new file mode 100644 index 0000000..b938ddc --- /dev/null +++ b/debian/patches/0130_openssl.patch @@ -0,0 +1,19 @@ +Description: Enable all ssl connections +Author: Jörg Frings-Fürst +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=871427 +Last-Update: 2017-08-26 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/ccast/ccpacket.c +=================================================================== +--- trunk.orig/ccast/ccpacket.c ++++ trunk/ccast/ccpacket.c +@@ -157,7 +157,7 @@ static ccpacket_err connect_ccpacket_imp + if ((p->ctx = ssl_ctx_new(SSL_SERVER_VERIFY_LATER, 1)) == NULL) + #else + // Want to use TLS_client_method(), but older OpenSSL doesn't have it... +- if ((p->ctx = SSL_CTX_new(TLSv1_client_method())) == NULL) ++ if ((p->ctx = SSL_CTX_new(SSLv23_client_method())) == NULL) + #endif + { + DBG((g_log,0, "connect ssl_ctx_new failed\n")) diff --git a/debian/patches/series b/debian/patches/series index c9ba163..47582dd 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -5,3 +5,4 @@ #0110_usb-db_new.patch #0120_kfreebsd.patch 0125_gcc5.patch +0130_openssl.patch |