diff options
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -425,7 +425,8 @@ sshd_exchange_identification(int sock_in, int sock_out) | |||
425 | minor = PROTOCOL_MINOR_1; | 425 | minor = PROTOCOL_MINOR_1; |
426 | } | 426 | } |
427 | snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s", major, minor, | 427 | snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s", major, minor, |
428 | SSH_RELEASE, newline); | 428 | options.debian_banner ? SSH_RELEASE : SSH_RELEASE_MINIMUM, |
429 | newline); | ||
429 | server_version_string = xstrdup(buf); | 430 | server_version_string = xstrdup(buf); |
430 | 431 | ||
431 | /* Send our protocol version identification. */ | 432 | /* Send our protocol version identification. */ |