diff options
author | 2020-11-08 22:37:24 +0000 | |
---|---|---|
committer | 2020-11-08 22:37:24 +0000 | |
commit | f29223874aaef706d56059b7e6d81229a0447b37 (patch) | |
tree | f06629d82e41a9ee27a39396fd619fef8cde1288 /usr.bin/ssh/ssh-agent.c | |
parent | In case of failure, call sigexit() from trapsignal instead of sensig(). (diff) | |
download | wireguard-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-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index b9206031da2..8a402f3a17d 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.266 2020/10/18 11:32:02 djm Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.267 2020/11/08 22:37:24 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -402,7 +402,7 @@ process_sign_request2(SocketEntry *e) /* Success */ ok = 0; send: - notify_complete(notifier); + notify_complete(notifier, "User presence confirmed"); sshkey_free(key); free(fp); if (ok == 0) { |