summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--sshconnect1.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 3450ef5c9..ec00e5cdc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
4 [kex.c] 4 [kex.c]
5 restore kexinit handler if we reset the dispatcher, this unbreaks 5 restore kexinit handler if we reset the dispatcher, this unbreaks
6 rekeying s/kex_clear_dispatch/kex_reset_dispatch/ 6 rekeying s/kex_clear_dispatch/kex_reset_dispatch/
7 - markus@cvs.openbsd.org 2002/02/11 16:15:46
8 [sshconnect1.c]
9 include md5.h, not evp.h
7 10
820020210 1120020210
9 - (djm) OpenBSD CVS Sync 12 - (djm) OpenBSD CVS Sync
@@ -7551,4 +7554,4 @@
7551 - Wrote replacements for strlcpy and mkdtemp 7554 - Wrote replacements for strlcpy and mkdtemp
7552 - Released 1.0pre1 7555 - Released 1.0pre1
7553 7556
7554$Id: ChangeLog,v 1.1839 2002/02/13 02:54:06 djm Exp $ 7557$Id: ChangeLog,v 1.1840 2002/02/13 02:54:27 djm Exp $
diff --git a/sshconnect1.c b/sshconnect1.c
index 8b577fb0a..d7722f4b9 100644
--- a/sshconnect1.c
+++ b/sshconnect1.c
@@ -13,10 +13,10 @@
13 */ 13 */
14 14
15#include "includes.h" 15#include "includes.h"
16RCSID("$OpenBSD: sshconnect1.c,v 1.47 2001/12/28 14:50:54 markus Exp $"); 16RCSID("$OpenBSD: sshconnect1.c,v 1.48 2002/02/11 16:15:46 markus Exp $");
17 17
18#include <openssl/bn.h> 18#include <openssl/bn.h>
19#include <openssl/evp.h> 19#include <openssl/md5.h>
20 20
21#ifdef KRB4 21#ifdef KRB4
22#include <krb.h> 22#include <krb.h>