summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-keygen.c
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2020-11-08 22:37:24 +0000
committerdjm <djm@openbsd.org>2020-11-08 22:37:24 +0000
commitf29223874aaef706d56059b7e6d81229a0447b37 (patch)
treef06629d82e41a9ee27a39396fd619fef8cde1288 /usr.bin/ssh/ssh-keygen.c
parentIn case of failure, call sigexit() from trapsignal instead of sensig(). (diff)
downloadwireguard-openbsd-f29223874aaef706d56059b7e6d81229a0447b37.tar.xz
wireguard-openbsd-f29223874aaef706d56059b7e6d81229a0447b37.zip
when requesting a security key touch on stderr, inform the user once
the touch has been recorded; requested by claudio@ ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r--usr.bin/ssh/ssh-keygen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c
index 031d1e0e369..e30b99d25e5 100644
--- a/usr.bin/ssh/ssh-keygen.c
+++ b/usr.bin/ssh/ssh-keygen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-keygen.c,v 1.423 2020/10/29 03:01:18 djm Exp $ */
+/* $OpenBSD: ssh-keygen.c,v 1.424 2020/11/08 22:37:24 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1831,7 +1831,7 @@ do_ca_sign(struct passwd *pw, const char *ca_key_path, int prefer_agent,
}
r = sshkey_certify(public, ca, key_type_name,
sk_provider, pin);
- notify_complete(notifier);
+ notify_complete(notifier, "User presence confirmed");
if (r != 0)
fatal_r(r, "Couldn't certify key %s", tmp);
}