diff options
author | Damien Miller <djm@mindrot.org> | 1999-10-28 05:25:17 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-10-28 05:25:17 +0200 |
commit | 7f6ea0264d01aa40b20df8dc75141631479da054 (patch) | |
tree | a30aa324db2b41c64e1216ce73b7b7468e5ff706 /sshconnect.c | |
parent | Big PAM cleanup (diff) | |
download | openssh-7f6ea0264d01aa40b20df8dc75141631479da054.tar.xz openssh-7f6ea0264d01aa40b20df8dc75141631479da054.zip |
- Integrated patch from Dan Brosemer <odin@linuxfreak.com>
- Build fixes
- Autoconf
- Change binary names to open*
- Fixed autoconf script to detect PAM on RH6.1
- Added tests for libpwdb, and OpenBSD functions to autoconf (not used yet)
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. */ +#include "config.h" #include "includes.h" -RCSID("$Id: sshconnect.c,v 1.1 1999/10/27 03:42:45 damien Exp $"); +RCSID("$Id: sshconnect.c,v 1.2 1999/10/28 03:25:17 damien Exp $"); +#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: sshconnect.c,v 1.1 1999/10/27 03:42:45 damien Exp $"); #include "uidswap.h" #include "compat.h" -#include <openssl/md5.h> /* Session id for the current session. */ unsigned char session_id[16]; |