diff options
Diffstat (limited to 'packet.c')
-rw-r--r-- | packet.c | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -17,7 +17,7 @@ | |||
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include "includes.h" | 19 | #include "includes.h" |
20 | RCSID("$Id: packet.c,v 1.14 2000/04/04 04:39:03 damien Exp $"); | 20 | RCSID("$Id: packet.c,v 1.15 2000/04/04 04:57:08 damien Exp $"); |
21 | 21 | ||
22 | #include "xmalloc.h" | 22 | #include "xmalloc.h" |
23 | #include "buffer.h" | 23 | #include "buffer.h" |
@@ -35,9 +35,17 @@ RCSID("$Id: packet.c,v 1.14 2000/04/04 04:39:03 damien Exp $"); | |||
35 | #include "compat.h" | 35 | #include "compat.h" |
36 | #include "ssh2.h" | 36 | #include "ssh2.h" |
37 | 37 | ||
38 | #include <ssl/bn.h> | 38 | #ifdef HAVE_OPENSSL |
39 | #include <ssl/dh.h> | 39 | # include <openssl/bn.h> |
40 | #include <ssl/hmac.h> | 40 | # include <openssl/dh.h> |
41 | # include <openssl/hmac.h> | ||
42 | #endif /* HAVE_OPENSSL */ | ||
43 | #ifdef HAVE_SSL | ||
44 | # include <ssl/bn.h> | ||
45 | # include <ssl/dh.h> | ||
46 | # include <ssl/hmac.h> | ||
47 | #endif /* HAVE_SSL */ | ||
48 | |||
41 | #include "buffer.h" | 49 | #include "buffer.h" |
42 | #include "kex.h" | 50 | #include "kex.h" |
43 | #include "hmac.h" | 51 | #include "hmac.h" |