summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-agent.c
diff options
context:
space:
mode:
authornaddy <naddy@openbsd.org>2020-02-06 22:30:54 +0000
committernaddy <naddy@openbsd.org>2020-02-06 22:30:54 +0000
commit5f47a66000ea6cb181f93ec6eec42d947fb45006 (patch)
tree1d2af3b4a13bec94ca62c471f8bd9f7b9c7e0ec0 /usr.bin/ssh/ssh-agent.c
parentTry to reduce the lying, hyperbolic or obsolete commentary on (diff)
downloadwireguard-openbsd-5f47a66000ea6cb181f93ec6eec42d947fb45006.tar.xz
wireguard-openbsd-5f47a66000ea6cb181f93ec6eec42d947fb45006.zip
Replace "security key" with "authenticator" in program messages.
This replaces "security key" in error/usage/verbose messages and distinguishes between "authenticator" and "authenticator-hosted key". ok djm@
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r--usr.bin/ssh/ssh-agent.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c
index 5d31edb8ea5..3e0bc1dec83 100644
--- a/usr.bin/ssh/ssh-agent.c
+++ b/usr.bin/ssh/ssh-agent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-agent.c,v 1.254 2020/01/25 00:06:48 djm Exp $ */
+/* $OpenBSD: ssh-agent.c,v 1.255 2020/02/06 22:30:54 naddy Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -496,8 +496,8 @@ process_add_identity(SocketEntry *e)
}
if (sk_provider != NULL) {
if (!sshkey_is_sk(k)) {
- error("Cannot add provider: %s is not a security key",
- sshkey_type(k));
+ error("Cannot add provider: %s is not an "
+ "authenticator-hosted key", sshkey_type(k));
free(sk_provider);
goto send;
}