[openssh-commits] [openssh] 01/03: upstream: For "ssh -V" always exit 0, there is no need to check opt
git+noreply at mindrot.org
git+noreply at mindrot.org
Wed Jan 18 13:21:08 AEDT 2023
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 62360feb7f08f2a4c6fc36f3b3449309203c42c9
Author: millert at openbsd.org <millert at openbsd.org>
Date: Tue Jan 17 18:52:44 2023 +0000
upstream: For "ssh -V" always exit 0, there is no need to check opt
again. This was missed when the fallthrough in the switch case above it was
removed. OK deraadt@
OpenBSD-Commit-ID: 5583e5d8f6d62a8a4215cfa95a69932f344c8120
---
ssh.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/ssh.c b/ssh.c
index dc28bdc7..87454b84 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh.c,v 1.583 2023/01/13 02:58:20 dtucker Exp $ */
+/* $OpenBSD: ssh.c,v 1.584 2023/01/17 18:52:44 millert Exp $ */
/*
* Author: Tatu Ylonen <ylo at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -886,8 +886,7 @@ main(int ac, char **av)
case 'V':
fprintf(stderr, "%s, %s\n",
SSH_RELEASE, SSH_OPENSSL_VERSION);
- if (opt == 'V')
- exit(0);
+ exit(0);
break;
case 'w':
if (options.tun_open == -1)
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list