summaryrefslogtreecommitdiff
path: root/sshconnect.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 /sshconnect.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 'sshconnect.c')
-rw-r--r--sshconnect.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/sshconnect.c b/sshconnect.c
index bca0bf43a..3c5c990f2 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -12,19 +12,7 @@
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: sshconnect.c,v 1.68 2000/04/14 10:30:33 markus Exp $"); 13RCSID("$OpenBSD: sshconnect.c,v 1.68 2000/04/14 10:30:33 markus Exp $");
14 14
15#ifdef HAVE_OPENSSL
16#include <openssl/bn.h> 15#include <openssl/bn.h>
17#include <openssl/rsa.h>
18#include <openssl/dsa.h>
19#include <openssl/md5.h>
20#endif
21#ifdef HAVE_SSL
22#include <ssl/bn.h>
23#include <ssl/rsa.h>
24#include <ssl/dsa.h>
25#include <ssl/md5.h>
26#endif
27
28#include "xmalloc.h" 16#include "xmalloc.h"
29#include "rsa.h" 17#include "rsa.h"
30#include "ssh.h" 18#include "ssh.h"
@@ -38,8 +26,13 @@ RCSID("$OpenBSD: sshconnect.c,v 1.68 2000/04/14 10:30:33 markus Exp $");
38#include "readconf.h" 26#include "readconf.h"
39 27
40#include "bufaux.h" 28#include "bufaux.h"
29#include <openssl/rsa.h>
30#include <openssl/dsa.h>
41 31
42#include "ssh2.h" 32#include "ssh2.h"
33#include <openssl/md5.h>
34#include <openssl/dh.h>
35#include <openssl/hmac.h>
43#include "kex.h" 36#include "kex.h"
44#include "myproposal.h" 37#include "myproposal.h"
45#include "key.h" 38#include "key.h"