[ssh-add.c]
     fix prompt for ssh-add.
This commit is contained in:
Ben Lindstrom 2001-05-02 22:40:12 +00:00
parent 6d849315ff
commit 8a1371347b
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
20010503
- OpenBSD CVS Sync
- markus@cvs.openbsd.org 2001/05/02 16:41:20
[ssh-add.c]
fix prompt for ssh-add.
20010502
- OpenBSD CVS Sync
- mouring@cvs.openbsd.org 2001/05/02 01:25:39
@ -5302,4 +5308,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1189 2001/05/02 01:30:32 mouring Exp $
$Id: ChangeLog,v 1.1190 2001/05/02 22:40:12 mouring Exp $

View File

@ -35,7 +35,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: ssh-add.c,v 1.36 2001/04/18 21:57:42 markus Exp $");
RCSID("$OpenBSD: ssh-add.c,v 1.37 2001/05/02 16:41:20 markus Exp $");
#include <openssl/evp.h>
@ -126,7 +126,7 @@ add_file(AuthenticationConnection *ac, const char *filename)
/* clear passphrase since it did not work */
clear_pass();
printf("Need passphrase for %.200s\n", filename);
snprintf(msg, sizeof msg, "Enter passphrase for %.200s ",
snprintf(msg, sizeof msg, "Enter passphrase for %.200s: ",
comment);
for (;;) {
pass = read_passphrase(msg, 1);
@ -139,7 +139,7 @@ add_file(AuthenticationConnection *ac, const char *filename)
if (private != NULL)
break;
clear_pass();
strlcpy(msg, "Bad passphrase, try again ", sizeof msg);
strlcpy(msg, "Bad passphrase, try again: ", sizeof msg);
}
}
if (ssh_add_identity(ac, private, comment))