diff options
Diffstat (limited to 'sshconnect.c')
-rw-r--r-- | sshconnect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sshconnect.c b/sshconnect.c index f8ebd9875..180da43cd 100644 --- a/sshconnect.c +++ b/sshconnect.c | |||
@@ -538,7 +538,7 @@ ssh_exchange_identification(void) | |||
538 | snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", | 538 | snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", |
539 | compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1, | 539 | compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1, |
540 | compat20 ? PROTOCOL_MINOR_2 : minor1, | 540 | compat20 ? PROTOCOL_MINOR_2 : minor1, |
541 | SSH_VERSION); | 541 | SSH_RELEASE); |
542 | if (atomicio(vwrite, connection_out, buf, strlen(buf)) != strlen(buf)) | 542 | if (atomicio(vwrite, connection_out, buf, strlen(buf)) != strlen(buf)) |
543 | fatal("write: %.100s", strerror(errno)); | 543 | fatal("write: %.100s", strerror(errno)); |
544 | client_version_string = xstrdup(buf); | 544 | client_version_string = xstrdup(buf); |