diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-10-31 22:22:01 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-10-31 23:46:09 +0100 |
commit | 07da39f71d36fb547749a5b16aa8892e621a7e4a (patch) | |
tree | dd75cbd723102d887bc11f781cc0a23eee6b2f2f /pathnames.h | |
parent | upstream: ssh AddKeysToAgent support for U2F/FIDO keys (diff) | |
download | openssh-07da39f71d36fb547749a5b16aa8892e621a7e4a.tar.xz openssh-07da39f71d36fb547749a5b16aa8892e621a7e4a.zip |
upstream: ssh-agent support for U2F/FIDO keys
feedback & ok markus@
OpenBSD-Commit-ID: bb544a44bc32e45d2ec8bf652db2046f38360acb
Diffstat (limited to 'pathnames.h')
-rw-r--r-- | pathnames.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pathnames.h b/pathnames.h index 2e0c7b15b..3a1bd1977 100644 --- a/pathnames.h +++ b/pathnames.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pathnames.h,v 1.29 2019/10/31 21:15:14 djm Exp $ */ +/* $OpenBSD: pathnames.h,v 1.30 2019/10/31 21:22:01 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -133,6 +133,11 @@ #define _PATH_SSH_PKCS11_HELPER "/usr/libexec/ssh-pkcs11-helper" #endif +/* Location of ssh-sk-helper to support keys in security keys */ +#ifndef _PATH_SSH_SK_HELPER +#define _PATH_SSH_SK_HELPER "/usr/libexec/ssh-sk-helper" +#endif + /* xauth for X11 forwarding */ #ifndef _PATH_XAUTH #define _PATH_XAUTH "/usr/X11R6/bin/xauth" |