diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2024-12-04 11:51:13 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2024-12-04 17:43:37 +0100 |
commit | 50c640d874d0246dd0a0d949398c3d7f757c716a (patch) | |
tree | b1fce43ef260f5576329b738d7c12734fcb44209 | |
parent | upstream: sync the list of options accepted by -o with ssh_config.5 (diff) | |
download | openssh-50c640d874d0246dd0a0d949398c3d7f757c716a.tar.xz openssh-50c640d874d0246dd0a0d949398c3d7f757c716a.zip |
upstream: Don't assume existence of SK provider in test. Patch from
balu.gajjala at gmail via bz#3402.
OpenBSD-Regress-ID: d571932016d07d135b54433d07520b9e1901db43
-rw-r--r-- | regress/hostkey-agent.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/hostkey-agent.sh b/regress/hostkey-agent.sh index 384865857..28dcfe170 100644 --- a/regress/hostkey-agent.sh +++ b/regress/hostkey-agent.sh @@ -1,4 +1,4 @@ -# $OpenBSD: hostkey-agent.sh,v 1.14 2024/11/26 22:02:28 djm Exp $ +# $OpenBSD: hostkey-agent.sh,v 1.15 2024/12/04 10:51:13 dtucker Exp $ # Placed in the Public Domain. tid="hostkey agent" @@ -49,7 +49,7 @@ for k in $SSH_KEYTYPES ; do fi done -SSH_CERTTYPES=`ssh -Q key-sig | grep 'cert-v01@openssh.com'` +SSH_CERTTYPES=`ssh -Q key-sig | grep 'cert-v01@openssh.com' | maybe_filter_sk` # Prepare sshd_proxy for certificates. cp $OBJ/sshd_proxy.orig $OBJ/sshd_proxy |