=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/readconf.c,v retrieving revision 1.341 retrieving revision 1.342 diff -u -r1.341 -r1.342 --- src/usr.bin/ssh/readconf.c 2020/11/11 05:22:32 1.341 +++ src/usr.bin/ssh/readconf.c 2020/11/15 22:34:58 1.342 @@ -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 * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -2537,12 +2537,12 @@ 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; }