]> andersk Git - openssh.git/blobdiff - sshconnect.c
- Integrated patch from Dan Brosemer <odin@linuxfreak.com>
[openssh.git] / sshconnect.c
index e87dc6465bd8c94eea49403fe100d62a101dbc38..8d74aae182447d895c6b07eb99d08c3d9330102d 100644 (file)
@@ -14,10 +14,19 @@ login (authentication) dialog.
 
 */
 
+#include "config.h"
 #include "includes.h"
 RCSID("$Id$");
 
+#ifdef HAVE_OPENSSL
 #include <openssl/bn.h>
+#include <openssl/md5.h>
+#endif
+#ifdef HAVE_SSL
+#include <ssl/bn.h>
+#include <ssl/md5.h>
+#endif
+
 #include "xmalloc.h"
 #include "rsa.h"
 #include "ssh.h"
@@ -28,7 +37,6 @@ RCSID("$Id$");
 #include "uidswap.h"
 #include "compat.h"
 
-#include <openssl/md5.h>
 
 /* Session id for the current session. */
 unsigned char session_id[16];
This page took 0.033678 seconds and 4 git commands to generate.