summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r--ssh-keygen.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index deb08dd96..21b61b44b 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -14,7 +14,7 @@ Identity and host key generation and maintenance.
14*/ 14*/
15 15
16#include "includes.h" 16#include "includes.h"
17RCSID("$Id: ssh-keygen.c,v 1.5 1999/11/17 06:29:08 damien Exp $"); 17RCSID("$Id: ssh-keygen.c,v 1.6 1999/11/20 06:02:56 damien Exp $");
18 18
19#include "rsa.h" 19#include "rsa.h"
20#include "ssh.h" 20#include "ssh.h"
@@ -570,6 +570,7 @@ main(int ac, char **av)
570 570
571 /* Save the public key in text format in a file with the same name but 571 /* Save the public key in text format in a file with the same name but
572 .pub appended. */ 572 .pub appended. */
573 file = xrealloc(file, strlen(file) + 5);
573 strcat(file, ".pub"); 574 strcat(file, ".pub");
574 f = fopen(file, "w"); 575 f = fopen(file, "w");
575 if (!f) 576 if (!f)