diff options
Diffstat (limited to 'debian/patches/package-versioning.patch')
-rw-r--r-- | debian/patches/package-versioning.patch | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/debian/patches/package-versioning.patch b/debian/patches/package-versioning.patch index 64606e2e9..b396cb116 100644 --- a/debian/patches/package-versioning.patch +++ b/debian/patches/package-versioning.patch | |||
@@ -5,7 +5,7 @@ Description: Include the Debian version in our identification | |||
5 | vulnerable-looking version strings. (However, see debian-banner.patch.) | 5 | vulnerable-looking version strings. (However, see debian-banner.patch.) |
6 | Author: Matthew Vernon <matthew@debian.org> | 6 | Author: Matthew Vernon <matthew@debian.org> |
7 | Forwarded: not-needed | 7 | Forwarded: not-needed |
8 | Last-Update: 2010-02-28 | 8 | Last-Update: 2012-09-07 |
9 | 9 | ||
10 | Index: b/sshconnect.c | 10 | Index: b/sshconnect.c |
11 | =================================================================== | 11 | =================================================================== |
@@ -24,21 +24,21 @@ Index: b/sshd.c | |||
24 | =================================================================== | 24 | =================================================================== |
25 | --- a/sshd.c | 25 | --- a/sshd.c |
26 | +++ b/sshd.c | 26 | +++ b/sshd.c |
27 | @@ -424,7 +424,7 @@ | 27 | @@ -425,7 +425,7 @@ |
28 | minor = PROTOCOL_MINOR_1; | ||
29 | } | 28 | } |
30 | snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s", major, minor, | ||
31 | - SSH_VERSION, newline); | ||
32 | + SSH_RELEASE, newline); | ||
33 | server_version_string = xstrdup(buf); | ||
34 | 29 | ||
35 | /* Send our protocol version identification. */ | 30 | xasprintf(&server_version_string, "SSH-%d.%d-%.100s%s%s%s", |
31 | - major, minor, SSH_VERSION, | ||
32 | + major, minor, SSH_RELEASE, | ||
33 | *options.version_addendum == '\0' ? "" : " ", | ||
34 | options.version_addendum, newline); | ||
35 | |||
36 | Index: b/version.h | 36 | Index: b/version.h |
37 | =================================================================== | 37 | =================================================================== |
38 | --- a/version.h | 38 | --- a/version.h |
39 | +++ b/version.h | 39 | +++ b/version.h |
40 | @@ -3,4 +3,9 @@ | 40 | @@ -3,4 +3,9 @@ |
41 | #define SSH_VERSION "OpenSSH_6.0" | 41 | #define SSH_VERSION "OpenSSH_6.1" |
42 | 42 | ||
43 | #define SSH_PORTABLE "p1" | 43 | #define SSH_PORTABLE "p1" |
44 | -#define SSH_RELEASE SSH_VERSION SSH_PORTABLE | 44 | -#define SSH_RELEASE SSH_VERSION SSH_PORTABLE |