- markus@cvs.openbsd.org 2002/02/11 16:15:46
     [sshconnect1.c]
     include md5.h, not evp.h
diff --git a/ChangeLog b/ChangeLog
index 3450ef5..ec00e5c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
      [kex.c]
      restore kexinit handler if we reset the dispatcher, this unbreaks
      rekeying s/kex_clear_dispatch/kex_reset_dispatch/
+   - markus@cvs.openbsd.org 2002/02/11 16:15:46
+     [sshconnect1.c]
+     include md5.h, not evp.h
 
 20020210
  - (djm) OpenBSD CVS Sync
@@ -7551,4 +7554,4 @@
  - Wrote replacements for strlcpy and mkdtemp
  - Released 1.0pre1
 
-$Id: ChangeLog,v 1.1839 2002/02/13 02:54:06 djm Exp $
+$Id: ChangeLog,v 1.1840 2002/02/13 02:54:27 djm Exp $
diff --git a/sshconnect1.c b/sshconnect1.c
index 8b577fb..d7722f4 100644
--- a/sshconnect1.c
+++ b/sshconnect1.c
@@ -13,10 +13,10 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: sshconnect1.c,v 1.47 2001/12/28 14:50:54 markus Exp $");
+RCSID("$OpenBSD: sshconnect1.c,v 1.48 2002/02/11 16:15:46 markus Exp $");
 
 #include <openssl/bn.h>
-#include <openssl/evp.h>
+#include <openssl/md5.h>
 
 #ifdef KRB4
 #include <krb.h>