summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2003-05-15 03:10:53 +0000
committerDamien Miller <djm@cvs.openbsd.org>2003-05-15 03:10:53 +0000
commitf1b1efe393634213f43f7d2ed1b09c6c4053755c (patch)
tree66d4a661fab8b0b198a6e9b61a55b30639ac3b56 /usr.bin
parent86540f2b0a84ec8140755fc178d3686a75cf63a9 (diff)
avoid warning; ok jakob@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/ssh-keygen.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c
index 00042219727..5f68e528482 100644
--- a/usr.bin/ssh/ssh-keygen.c
+++ b/usr.bin/ssh/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;