]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: revert r1.341; it breaks ProxyJump; reported by sthen@
authordjm@openbsd.org <djm@openbsd.org>
Sun, 15 Nov 2020 22:34:58 +0000 (22:34 +0000)
committerDamien Miller <djm@mindrot.org>
Sun, 15 Nov 2020 22:36:05 +0000 (09:36 +1100)
OpenBSD-Commit-ID: 6ac2f945b26cb86d936eed338f77861d6da8356a

readconf.c

index e2374a857e545e918b575735ab37febd16884473..09b5e086a114adb00030c746c781c81f62a51a24 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: readconf.c,v 1.341 2020/11/11 05:22:32 djm Exp $ */
+/* $OpenBSD: readconf.c,v 1.342 2020/11/15 22:34:58 djm Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -2558,12 +2558,12 @@ parse_jump(const char *s, Options *o, int active)
 
                if (first) {
                        /* First argument and configuration is active */
-                       if (parse_ssh_uri(cp, &user, &host, &port) == -1 &&
+                       if (parse_ssh_uri(cp, &user, &host, &port) == -1 ||
                            parse_user_host_port(cp, &user, &host, &port) != 0)
                                goto out;
                } else {
                        /* Subsequent argument or inactive configuration */
-                       if (parse_ssh_uri(cp, NULL, NULL, NULL) == -1 &&
+                       if (parse_ssh_uri(cp, NULL, NULL, NULL) == -1 ||
                            parse_user_host_port(cp, NULL, NULL, NULL) != 0)
                                goto out;
                }