]> andersk Git - openssh.git/commitdiff
Only display comment for ssh-askpass
authordamien <damien>
Mon, 22 Nov 1999 07:11:23 +0000 (07:11 +0000)
committerdamien <damien>
Mon, 22 Nov 1999 07:11:23 +0000 (07:11 +0000)
ChangeLog
ssh-add.c

index 0f069dfd12089e80a88edfa883dc5b23b4cdaef6..04561846e682332e4c2b2d46a929877cd632eb6a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,8 @@
  - Retry /dev/urandom reads interrupted by signal (report from 
    Robert Hardy <rhardy@webcon.net>)
  - Added a setenv replacement for systems which lack it
+ - Only display public key comment when presenting ssh-askpass dialog
+ - Released 1.2pre14
 
 19991121
  - OpenBSD CVS Changes:
index 7788f10b3bae7bf4f68bf8ca2f99d6013ecac2ad..2212f0408a324d378bd395910ef4208b76bf4aca 100644 (file)
--- a/ssh-add.c
+++ b/ssh-add.c
@@ -282,7 +282,7 @@ int askpass(const char *filename, RSA *key, const char *saved_comment, char **co
       exit(1);
     }
 
-    tmp = snprintf(buf, sizeof(buf), "Need passphrase for %s (%s)", filename, saved_comment);
+    tmp = snprintf(buf, sizeof(buf), "Need passphrase for %s", saved_comment);
     /* skip the prompt if it won't fit */
     if ((tmp < 0) || (tmp >= sizeof(buf)))
       tmp = execlp(ASKPASS_PROGRAM, "ssh-askpass", 0);
This page took 0.519451 seconds and 5 git commands to generate.