unbreak support for clients that advertise a protocol version
authordjm <djm@openbsd.org>
Tue, 23 Jan 2018 05:12:12 +0000 (05:12 +0000)
committerdjm <djm@openbsd.org>
Tue, 23 Jan 2018 05:12:12 +0000 (05:12 +0000)
of "1.99" (indicating both v2 and v1 support). Busted by me during
SSHv1 purge in r1.358; bz2810, ok dtucker

usr.bin/ssh/sshd.c

index c328215..c93e088 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshd.c,v 1.500 2018/01/23 05:01:15 djm Exp $ */
+/* $OpenBSD: sshd.c,v 1.501 2018/01/23 05:12:12 djm Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -431,7 +431,7 @@ sshd_exchange_identification(struct ssh *ssh, int sock_in, int sock_out)
        debug("Local version string %.200s", server_version_string);
 
        if (remote_major != 2 ||
-           (remote_major == 1 && remote_minor != 99)) {
+           !(remote_major == 1 && remote_minor == 99)) {
                s = "Protocol major versions differ.\n";
                (void) atomicio(vwrite, sock_out, s, strlen(s));
                close(sock_in);