diff options
author | Kees Cook <kees@debian.org> | 2014-02-09 16:10:06 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2016-02-29 12:34:03 +0000 |
commit | 3c79e49a4fbd8e4c84f6af6f1173563bda8b273b (patch) | |
tree | cdaa60672213a3389915628ea13a5cc827822214 /sshd.c | |
parent | f7587633dc374db82455fe7a3fa921de5c4a897b (diff) |
Add DebianBanner server configuration option
Setting this to "no" causes sshd to omit the Debian revision from its
initial protocol handshake, for those scared by package-versioning.patch.
Bug-Debian: http://bugs.debian.org/562048
Forwarded: not-needed
Last-Update: 2015-11-29
Patch-Name: debian-banner.patch
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -442,7 +442,8 @@ sshd_exchange_identification(int sock_in, int sock_out) | |||
442 | } | 442 | } |
443 | 443 | ||
444 | xasprintf(&server_version_string, "SSH-%d.%d-%.100s%s%s%s", | 444 | xasprintf(&server_version_string, "SSH-%d.%d-%.100s%s%s%s", |
445 | major, minor, SSH_RELEASE, | 445 | major, minor, |
446 | options.debian_banner ? SSH_RELEASE : SSH_RELEASE_MINIMUM, | ||
446 | *options.version_addendum == '\0' ? "" : " ", | 447 | *options.version_addendum == '\0' ? "" : " ", |
447 | options.version_addendum, newline); | 448 | options.version_addendum, newline); |
448 | 449 | ||