diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2023-02-10 04:40:29 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2023-02-10 04:40:29 +0000 |
commit | cc9c679dd8585a905e7bd4cdc27bf6f50e7fde0d (patch) | |
tree | f31aa27532010205a1f0bbbc32f6f79cd1c82128 | |
parent | b948201e0e1d878a3b826241f71c13f043db0aaa (diff) |
make `ssh -Q CASignatureAlgorithms` work as the manpage says it should
bz3532
-rw-r--r-- | usr.bin/ssh/ssh.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index c931542e3df..b4744f33a42 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.584 2023/01/17 18:52:44 millert Exp $ */ +/* $OpenBSD: ssh.c,v 1.585 2023/02/10 04:40:28 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -768,6 +768,7 @@ main(int ac, char **av) else if (strcmp(optarg, "key-plain") == 0) cp = sshkey_alg_list(0, 1, 0, '\n'); else if (strcmp(optarg, "key-sig") == 0 || + strcasecmp(optarg, "CASignatureAlgorithms") == 0 || strcasecmp(optarg, "PubkeyAcceptedKeyTypes") == 0 || /* deprecated name */ strcasecmp(optarg, "PubkeyAcceptedAlgorithms") == 0 || strcasecmp(optarg, "HostKeyAlgorithms") == 0 || |