]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2001/05/02 16:41:20
authormouring <mouring>
Wed, 2 May 2001 22:40:12 +0000 (22:40 +0000)
committermouring <mouring>
Wed, 2 May 2001 22:40:12 +0000 (22:40 +0000)
     [ssh-add.c]
     fix prompt for ssh-add.

ChangeLog
ssh-add.c

index 70d966fabdeee39abae180396c58c4f36b10dd34..0f7a86690b039ddbcc10fdef5aa9188c9e90acb7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 323e73ecf6ad81bf270d5d560f57491715b26a41..5f1182ec26d711def5ea0248e32fe90c7236af44 100644 (file)
--- a/ssh-add.c
+++ b/ssh-add.c
@@ -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))
This page took 0.070443 seconds and 5 git commands to generate.