summaryrefslogtreecommitdiff
path: root/version.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2010-01-16 00:07:00 +0000
committerColin Watson <cjwatson@debian.org>2010-01-16 00:07:00 +0000
commit730e12063b532f59292af38f584d84127a77ebdd (patch)
tree0fe553bd04207ffde728f350a1f21dfb5966bf14 /version.h
parent5df50c6ed93365589bbcfb6a1925828b1273c7a9 (diff)
Implement DebianBanner server configuration flag that can be set to "no"
to allow sshd to run without the Debian-specific extra version in the initial protocol handshake (closes: #562048).
Diffstat (limited to 'version.h')
-rw-r--r--version.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/version.h b/version.h
index 79af60194..2c7764677 100644
--- a/version.h
+++ b/version.h
@@ -3,8 +3,9 @@
3#define SSH_VERSION "OpenSSH_5.2" 3#define SSH_VERSION "OpenSSH_5.2"
4 4
5#define SSH_PORTABLE "p1" 5#define SSH_PORTABLE "p1"
6#define SSH_RELEASE_MINIMUM SSH_VERSION SSH_PORTABLE
6#ifdef SSH_EXTRAVERSION 7#ifdef SSH_EXTRAVERSION
7#define SSH_RELEASE SSH_VERSION SSH_PORTABLE " " SSH_EXTRAVERSION 8#define SSH_RELEASE SSH_RELEASE_MINIMUM " " SSH_EXTRAVERSION
8#else 9#else
9#define SSH_RELEASE SSH_VERSION SSH_PORTABLE 10#define SSH_RELEASE SSH_RELEASE_MINIMUM
10#endif 11#endif