=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/sshconnect.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- src/usr.bin/ssh/sshconnect.c 1999/09/30 06:06:31 1.9 +++ src/usr.bin/ssh/sshconnect.c 1999/09/30 17:08:52 1.10 @@ -15,7 +15,7 @@ */ #include "includes.h" -RCSID("$Id: sshconnect.c,v 1.9 1999/09/30 06:06:31 deraadt Exp $"); +RCSID("$Id: sshconnect.c,v 1.10 1999/09/30 17:08:52 deraadt Exp $"); #include #include "xmalloc.h" @@ -24,10 +24,11 @@ #include "packet.h" #include "authfd.h" #include "cipher.h" -#include "ssh_md5.h" #include "mpaux.h" #include "uidswap.h" +#include + /* Session id for the current session. */ unsigned char session_id[16]; @@ -438,7 +439,7 @@ respond_to_rsa_challenge(BIGNUM *challenge, RSA *prv) { unsigned char buf[32], response[16]; - struct MD5Context md; + MD5_CTX md; int i, len; /* Decrypt the challenge using the private key. */