diff options
Diffstat (limited to 'sshconnect.c')
-rw-r--r-- | sshconnect.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sshconnect.c b/sshconnect.c index 3437b04ca..647dfbd8d 100644 --- a/sshconnect.c +++ b/sshconnect.c | |||
@@ -14,10 +14,19 @@ login (authentication) dialog. | |||
14 | 14 | ||
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include "config.h" | ||
17 | #include "includes.h" | 18 | #include "includes.h" |
18 | RCSID("$Id: sshconnect.c,v 1.1 1999/10/27 03:42:45 damien Exp $"); | 19 | RCSID("$Id: sshconnect.c,v 1.2 1999/10/28 03:25:17 damien Exp $"); |
19 | 20 | ||
21 | #ifdef HAVE_OPENSSL | ||
20 | #include <openssl/bn.h> | 22 | #include <openssl/bn.h> |
23 | #include <openssl/md5.h> | ||
24 | #endif | ||
25 | #ifdef HAVE_SSL | ||
26 | #include <ssl/bn.h> | ||
27 | #include <ssl/md5.h> | ||
28 | #endif | ||
29 | |||
21 | #include "xmalloc.h" | 30 | #include "xmalloc.h" |
22 | #include "rsa.h" | 31 | #include "rsa.h" |
23 | #include "ssh.h" | 32 | #include "ssh.h" |
@@ -28,7 +37,6 @@ RCSID("$Id: sshconnect.c,v 1.1 1999/10/27 03:42:45 damien Exp $"); | |||
28 | #include "uidswap.h" | 37 | #include "uidswap.h" |
29 | #include "compat.h" | 38 | #include "compat.h" |
30 | 39 | ||
31 | #include <openssl/md5.h> | ||
32 | 40 | ||
33 | /* Session id for the current session. */ | 41 | /* Session id for the current session. */ |
34 | unsigned char session_id[16]; | 42 | unsigned char session_id[16]; |