summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r--ssh-keygen.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 89ef9a143..1d6234c1c 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-keygen.c,v 1.416 2020/08/27 01:06:18 djm Exp $ */ 1/* $OpenBSD: ssh-keygen.c,v 1.417 2020/08/27 01:07:51 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -3632,6 +3632,11 @@ main(int argc, char **argv)
3632 fatal("Too many incorrect PINs"); 3632 fatal("Too many incorrect PINs");
3633 passphrase = read_passphrase("Enter PIN for " 3633 passphrase = read_passphrase("Enter PIN for "
3634 "authenticator: ", RP_ALLOW_STDIN); 3634 "authenticator: ", RP_ALLOW_STDIN);
3635 if (!quiet) {
3636 printf("You may need to touch your "
3637 "authenticator (again) to authorize "
3638 "key generation.\n");
3639 }
3635 } 3640 }
3636 if (passphrase != NULL) { 3641 if (passphrase != NULL) {
3637 freezero(passphrase, strlen(passphrase)); 3642 freezero(passphrase, strlen(passphrase));