summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-06-09 01:38:24 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-06-09 01:38:24 +0000
commit5acb5d03edecae6ecbd062b9da9f7f4fde382287 (patch)
tree42d8e3e6a1af65c77f664474af6f4612400fad9e
parentc66d436f603c8e1d727dc55a8087e497701ca7f3 (diff)
- markus@cvs.openbsd.org 2001/06/06 23:19:35
[ssh-add.c] remove debug message; Darren.Moffat@eng.sun.com
-rw-r--r--ChangeLog5
-rw-r--r--ssh-add.c3
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 88bf1105e..a7d071eee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -59,6 +59,9 @@
59 - markus@cvs.openbsd.org 2001/06/06 23:13:54 59 - markus@cvs.openbsd.org 2001/06/06 23:13:54
60 [ssh-dss.c ssh-rsa.c] 60 [ssh-dss.c ssh-rsa.c]
61 cleanup, remove old code 61 cleanup, remove old code
62 - markus@cvs.openbsd.org 2001/06/06 23:19:35
63 [ssh-add.c]
64 remove debug message; Darren.Moffat@eng.sun.com
62 65
6320010606 6620010606
64 - OpenBSD CVS Sync 67 - OpenBSD CVS Sync
@@ -5570,4 +5573,4 @@
5570 - Wrote replacements for strlcpy and mkdtemp 5573 - Wrote replacements for strlcpy and mkdtemp
5571 - Released 1.0pre1 5574 - Released 1.0pre1
5572 5575
5573$Id: ChangeLog,v 1.1264 2001/06/09 01:36:21 mouring Exp $ 5576$Id: ChangeLog,v 1.1265 2001/06/09 01:38:24 mouring Exp $
diff --git a/ssh-add.c b/ssh-add.c
index cf181ca46..9240b0d1e 100644
--- a/ssh-add.c
+++ b/ssh-add.c
@@ -35,7 +35,7 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: ssh-add.c,v 1.37 2001/05/02 16:41:20 markus Exp $"); 38RCSID("$OpenBSD: ssh-add.c,v 1.38 2001/06/06 23:19:35 markus Exp $");
39 39
40#include <openssl/evp.h> 40#include <openssl/evp.h>
41 41
@@ -125,7 +125,6 @@ add_file(AuthenticationConnection *ac, const char *filename)
125 if (private == NULL) { 125 if (private == NULL) {
126 /* clear passphrase since it did not work */ 126 /* clear passphrase since it did not work */
127 clear_pass(); 127 clear_pass();
128 printf("Need passphrase for %.200s\n", filename);
129 snprintf(msg, sizeof msg, "Enter passphrase for %.200s: ", 128 snprintf(msg, sizeof msg, "Enter passphrase for %.200s: ",
130 comment); 129 comment);
131 for (;;) { 130 for (;;) {