summaryrefslogtreecommitdiffstats
path: root/ssh-keygen.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-15 05:37:43 +0200
committerDamien Miller <djm@mindrot.org>2003-05-15 05:37:43 +0200
commited12a26f0d4749bf6e2807afc40e97d06bda041c (patch)
treef9669373acf9f78fe96e0cc495d2a9c514fae067 /ssh-keygen.c
parent - markus@cvs.openbsd.org 2003/05/15 03:08:29 (diff)
downloadopenssh-ed12a26f0d4749bf6e2807afc40e97d06bda041c.tar.xz
openssh-ed12a26f0d4749bf6e2807afc40e97d06bda041c.zip
- 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 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh-keygen.c,v 1.105 2003/05/14 18:16:20 jakob Exp $");
+RCSID("$OpenBSD: ssh-keygen.c,v 1.106 2003/05/15 03:10:52 djm Exp $");
#include <openssl/evp.h>
#include <openssl/pem.h>
@@ -31,6 +31,9 @@ RCSID("$OpenBSD: ssh-keygen.c,v 1.105 2003/05/14 18:16:20 jakob Exp $");
#ifdef SMARTCARD
#include "scard.h"
#endif
+#ifdef DNS
+#include "dns.h"
+#endif
/* Number of bits in the RSA/DSA key. This value can be changed on the command line. */
int bits = 1024;