summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-15 13:37:43 +1000
committerDamien Miller <djm@mindrot.org>2003-05-15 13:37:43 +1000
commited12a26f0d4749bf6e2807afc40e97d06bda041c (patch)
treef9669373acf9f78fe96e0cc495d2a9c514fae067 /ssh-keygen.c
parent3a3261ff99f660b8191f3e5366054566fb0a05de (diff)
- djm@cvs.openbsd.org 2003/05/15 03:10:52
[ssh-keygen.c] avoid warning; ok jakob@
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r--ssh-keygen.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index f3ea4f1fd..c93d70bad 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.105 2003/05/14 18:16:20 jakob Exp $"); 15RCSID("$OpenBSD: ssh-keygen.c,v 1.106 2003/05/15 03:10:52 djm Exp $");
16 16
17#include <openssl/evp.h> 17#include <openssl/evp.h>
18#include <openssl/pem.h> 18#include <openssl/pem.h>
@@ -31,6 +31,9 @@ RCSID("$OpenBSD: ssh-keygen.c,v 1.105 2003/05/14 18:16:20 jakob Exp $");
31#ifdef SMARTCARD 31#ifdef SMARTCARD
32#include "scard.h" 32#include "scard.h"
33#endif 33#endif
34#ifdef DNS
35#include "dns.h"
36#endif
34 37
35/* Number of bits in the RSA/DSA key. This value can be changed on the command line. */ 38/* Number of bits in the RSA/DSA key. This value can be changed on the command line. */
36int bits = 1024; 39int bits = 1024;