summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--Makefile.in5
-rw-r--r--ssh-keygen.c6
3 files changed, 14 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index db18b729c..a727479b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
120001223
2 - (bal) Fixed Makefile.in to support recompile of all ssh and sshd objects
3 if a change to config.h has occurred. Suggested by Gert Doering
4 <gert@greenie.muc.de>
5 - (bal) OpenBSD CVS Update:
6 - markus@cvs.openbsd.org 2000/12/22 16:49:40
7 [ssh-keygen.c]
8 fix ssh-keygen -x -t type > file; from Roumen.Petrov@skalasoft.com
9
120001222 1020001222
2 - Updated RCSID for pty.c 11 - Updated RCSID for pty.c
3 - (bal) OpenBSD CVS Updates: 12 - (bal) OpenBSD CVS Updates:
diff --git a/Makefile.in b/Makefile.in
index 1d8028418..117968cdc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -11,9 +11,7 @@ srcdir=@srcdir@
11top_srcdir=@top_srcdir@ 11top_srcdir=@top_srcdir@
12 12
13DESTDIR= 13DESTDIR=
14
15VPATH=@srcdir@ 14VPATH=@srcdir@
16
17SSH_PROGRAM=@bindir@/ssh 15SSH_PROGRAM=@bindir@/ssh
18ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass 16ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
19 17
@@ -72,7 +70,8 @@ all: $(TARGETS) $(CONFIGFILES)
72manpages: $(MANPAGES) 70manpages: $(MANPAGES)
73 71
74$(LIBSSH_OBJS): config.h 72$(LIBSSH_OBJS): config.h
75 73$(SSHOBJS): config.h
74$(SSHDOBJS): config.h
76$(LIBOPENBSD_COMPAT_OBJS): config.h 75$(LIBOPENBSD_COMPAT_OBJS): config.h
77 76
78libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS) 77libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS)
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 533cf192e..057803351 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: ssh-keygen.c,v 1.36 2000/12/19 23:17:58 markus Exp $"); 15RCSID("$OpenBSD: ssh-keygen.c,v 1.37 2000/12/22 16:49:40 markus Exp $");
16 16
17#include <openssl/evp.h> 17#include <openssl/evp.h>
18#include <openssl/pem.h> 18#include <openssl/pem.h>
@@ -101,8 +101,8 @@ ask_filename(struct passwd *pw, const char *prompt)
101 break; 101 break;
102 } 102 }
103 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name); 103 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
104 printf("%s (%s): ", prompt, identity_file); 104 fprintf(stderr, "%s (%s): ", prompt, identity_file);
105 fflush(stdout); 105 fflush(stderr);
106 if (fgets(buf, sizeof(buf), stdin) == NULL) 106 if (fgets(buf, sizeof(buf), stdin) == NULL)
107 exit(1); 107 exit(1);
108 if (strchr(buf, '\n')) 108 if (strchr(buf, '\n'))