diff options
author | Colin Watson <cjwatson@debian.org> | 2016-12-20 00:22:53 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2016-12-23 19:08:35 +0000 |
commit | ee52365e713e546dbd878d73d9590dbaccd760ba (patch) | |
tree | 841d0d9ae73e83070bcc3b46218ebdd18142dda3 /debian/patches/no-openssl-version-status.patch | |
parent | 8a4a5c22e363ad6a110ad9b787170297f5da8f04 (diff) | |
parent | 2103d3e5566c54e08a59be750579a249e46747d7 (diff) |
New upstream release (7.4p1).
Diffstat (limited to 'debian/patches/no-openssl-version-status.patch')
-rw-r--r-- | debian/patches/no-openssl-version-status.patch | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/debian/patches/no-openssl-version-status.patch b/debian/patches/no-openssl-version-status.patch index 8503c5854..682455fe9 100644 --- a/debian/patches/no-openssl-version-status.patch +++ b/debian/patches/no-openssl-version-status.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From e7d4050d9077603c20a93bdfd6b99cd419d69f1c Mon Sep 17 00:00:00 2001 | 1 | From 27710ce6deb6e9a820235ac44dd82333ab330047 Mon Sep 17 00:00:00 2001 |
2 | From: Kurt Roeckx <kurt@roeckx.be> | 2 | From: Kurt Roeckx <kurt@roeckx.be> |
3 | Date: Sun, 9 Feb 2014 16:10:14 +0000 | 3 | Date: Sun, 9 Feb 2014 16:10:14 +0000 |
4 | Subject: Don't check the status field of the OpenSSL version | 4 | Subject: Don't check the status field of the OpenSSL version |
@@ -23,10 +23,10 @@ Patch-Name: no-openssl-version-status.patch | |||
23 | 2 files changed, 4 insertions(+), 3 deletions(-) | 23 | 2 files changed, 4 insertions(+), 3 deletions(-) |
24 | 24 | ||
25 | diff --git a/openbsd-compat/openssl-compat.c b/openbsd-compat/openssl-compat.c | 25 | diff --git a/openbsd-compat/openssl-compat.c b/openbsd-compat/openssl-compat.c |
26 | index 63a660c..3f62403 100644 | 26 | index 259fccbe..aaa953f2 100644 |
27 | --- a/openbsd-compat/openssl-compat.c | 27 | --- a/openbsd-compat/openssl-compat.c |
28 | +++ b/openbsd-compat/openssl-compat.c | 28 | +++ b/openbsd-compat/openssl-compat.c |
29 | @@ -36,7 +36,7 @@ | 29 | @@ -34,7 +34,7 @@ |
30 | /* | 30 | /* |
31 | * OpenSSL version numbers: MNNFFPPS: major minor fix patch status | 31 | * OpenSSL version numbers: MNNFFPPS: major minor fix patch status |
32 | * We match major, minor, fix and status (not patch) for <1.0.0. | 32 | * We match major, minor, fix and status (not patch) for <1.0.0. |
@@ -35,9 +35,9 @@ index 63a660c..3f62403 100644 | |||
35 | * allow 1.0.1 to work with 1.0.0). Going backwards is only allowed | 35 | * allow 1.0.1 to work with 1.0.0). Going backwards is only allowed |
36 | * within a patch series. | 36 | * within a patch series. |
37 | */ | 37 | */ |
38 | @@ -57,10 +57,10 @@ ssh_compatible_openssl(long headerver, long libver) | 38 | @@ -55,10 +55,10 @@ ssh_compatible_openssl(long headerver, long libver) |
39 | } | 39 | } |
40 | 40 | ||
41 | /* | 41 | /* |
42 | - * For versions >= 1.0.0, major,minor,status must match and library | 42 | - * For versions >= 1.0.0, major,minor,status must match and library |
43 | + * For versions >= 1.0.0, major,minor must match and library | 43 | + * For versions >= 1.0.0, major,minor must match and library |
@@ -49,7 +49,7 @@ index 63a660c..3f62403 100644 | |||
49 | lfix = (libver & 0x000ff000) >> 12; | 49 | lfix = (libver & 0x000ff000) >> 12; |
50 | if ( (headerver & mask) == (libver & mask) && lfix >= hfix) | 50 | if ( (headerver & mask) == (libver & mask) && lfix >= hfix) |
51 | diff --git a/openbsd-compat/regress/opensslvertest.c b/openbsd-compat/regress/opensslvertest.c | 51 | diff --git a/openbsd-compat/regress/opensslvertest.c b/openbsd-compat/regress/opensslvertest.c |
52 | index 5d019b5..5847487 100644 | 52 | index 5d019b59..58474873 100644 |
53 | --- a/openbsd-compat/regress/opensslvertest.c | 53 | --- a/openbsd-compat/regress/opensslvertest.c |
54 | +++ b/openbsd-compat/regress/opensslvertest.c | 54 | +++ b/openbsd-compat/regress/opensslvertest.c |
55 | @@ -35,6 +35,7 @@ struct version_test { | 55 | @@ -35,6 +35,7 @@ struct version_test { |