summaryrefslogtreecommitdiff
path: root/hostfile.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-16 12:31:48 +1000
committerDamien Miller <djm@mindrot.org>2000-04-16 12:31:48 +1000
commit5f05637b0ef7058d3ab2ff385251f73dcc9cb5f7 (patch)
tree443665fb58916f33c2f346aa3284a444d3352311 /hostfile.c
parenta664e870f27e6dc2c73f393e95a229abc527e0e6 (diff)
- Reduce diff against OpenBSD source
- All OpenSSL includes are now unconditionally referenced as openssl/foo.h - Pick up formatting changes - Other minor changed (typecasts, etc) that I missed
Diffstat (limited to 'hostfile.c')
-rw-r--r--hostfile.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/hostfile.c b/hostfile.c
index b027075af..29efe5656 100644
--- a/hostfile.c
+++ b/hostfile.c
@@ -16,20 +16,11 @@
16#include "includes.h" 16#include "includes.h"
17RCSID("$OpenBSD: hostfile.c,v 1.16 2000/04/14 10:30:31 markus Exp $"); 17RCSID("$OpenBSD: hostfile.c,v 1.16 2000/04/14 10:30:31 markus Exp $");
18 18
19#ifdef HAVE_OPENSSL
20#include <openssl/bn.h>
21#include <openssl/rsa.h>
22#include <openssl/dsa.h>
23#endif
24#ifdef HAVE_SSL
25#include <ssl/bn.h>
26#include <ssl/rsa.h>
27#include <ssl/dsa.h>
28#endif
29
30#include "packet.h" 19#include "packet.h"
31#include "match.h" 20#include "match.h"
32#include "ssh.h" 21#include "ssh.h"
22#include <openssl/rsa.h>
23#include <openssl/dsa.h>
33#include "key.h" 24#include "key.h"
34#include "hostfile.h" 25#include "hostfile.h"
35 26