summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sshd.c b/sshd.c
index b83ecd9e5..bd671160d 100644
--- a/sshd.c
+++ b/sshd.c
@@ -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. */