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 3b5d22fa3..f573db481 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.42 2001/02/04 15:32:26 stevesk Exp $"); 15RCSID("$OpenBSD: ssh-keygen.c,v 1.43 2001/02/12 16:16:23 markus Exp $");
16 16
17#include <openssl/evp.h> 17#include <openssl/evp.h>
18#include <openssl/pem.h> 18#include <openssl/pem.h>
@@ -532,6 +532,7 @@ do_change_comment(struct passwd *pw)
532 public = key_new(KEY_RSA1); 532 public = key_new(KEY_RSA1);
533 if (!load_public_key(identity_file, public, NULL)) { 533 if (!load_public_key(identity_file, public, NULL)) {
534 printf("%s is not a valid key file.\n", identity_file); 534 printf("%s is not a valid key file.\n", identity_file);
535 printf("Comments are only supported in RSA1 keys\n");
535 exit(1); 536 exit(1);
536 } 537 }
537 538