summaryrefslogtreecommitdiff
path: root/sshd.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 /sshd.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 'sshd.c')
-rw-r--r--sshd.c19
1 files changed, 5 insertions, 14 deletions
diff --git a/sshd.c b/sshd.c
index cc6bee96a..c8508e931 100644
--- a/sshd.c
+++ b/sshd.c
@@ -29,21 +29,12 @@ RCSID("$OpenBSD: sshd.c,v 1.105 2000/04/14 10:30:33 markus Exp $");
29#include "buffer.h" 29#include "buffer.h"
30 30
31#include "ssh2.h" 31#include "ssh2.h"
32#ifdef HAVE_OPENSSL 32#include <openssl/dh.h>
33# include <openssl/dh.h> 33#include <openssl/bn.h>
34# include <openssl/bn.h> 34#include <openssl/hmac.h>
35# include <openssl/hmac.h>
36# include <openssl/dsa.h>
37# include <openssl/rsa.h>
38#endif
39#ifdef HAVE_SSL
40# include <ssl/dh.h>
41# include <ssl/bn.h>
42# include <ssl/hmac.h>
43# include <ssl/dsa.h>
44# include <ssl/rsa.h>
45#endif
46#include "kex.h" 35#include "kex.h"
36#include <openssl/dsa.h>
37#include <openssl/rsa.h>
47#include "key.h" 38#include "key.h"
48#include "dsa.h" 39#include "dsa.h"
49 40