diff options
author | djm@openbsd.org <djm@openbsd.org> | 2020-11-08 23:37:24 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2020-11-08 23:39:22 +0100 |
commit | d5a0cd4fc430c8eda213a4010a612d4778867cd9 (patch) | |
tree | ee525d07568dc7a47c36299a1de343743a3711bc /sshconnect2.c | |
parent | Remove preprocessor directive from log macro calls. (diff) | |
download | openssh-d5a0cd4fc430c8eda213a4010a612d4778867cd9.tar.xz openssh-d5a0cd4fc430c8eda213a4010a612d4778867cd9.zip |
upstream: when requesting a security key touch on stderr, inform the
user once the touch has been recorded; requested by claudio@ ok markus@
OpenBSD-Commit-ID: 3b76ee444490e546b9ea7f879e4092ee0d256233
Diffstat (limited to '')
-rw-r--r-- | sshconnect2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sshconnect2.c b/sshconnect2.c index 46469a3b6..f0e62e142 100644 --- a/sshconnect2.c +++ b/sshconnect2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect2.c,v 1.333 2020/10/30 01:50:07 djm Exp $ */ +/* $OpenBSD: sshconnect2.c,v 1.334 2020/11/08 22:37:24 djm Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * Copyright (c) 2008 Damien Miller. All rights reserved. @@ -1279,7 +1279,7 @@ identity_sign(struct identity *id, u_char **sigp, size_t *lenp, free(prompt); if (pin != NULL) freezero(pin, strlen(pin)); - notify_complete(notifier); + notify_complete(notifier, "User presence confirmed"); sshkey_free(prv); return r; } |