summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-02-13 03:55:06 +0100
committerDamien Miller <djm@mindrot.org>2002-02-13 03:55:06 +0100
commit6a47f30c55ac5edc984f6c914379d1f0ff2c0cef (patch)
tree758baa5b2459dd475392b0bdc8f866498dbdf951
parent - markus@cvs.openbsd.org 2002/02/11 16:17:55 (diff)
downloadopenssh-6a47f30c55ac5edc984f6c914379d1f0ff2c0cef.tar.xz
openssh-6a47f30c55ac5edc984f6c914379d1f0ff2c0cef.zip
- markus@cvs.openbsd.org 2002/02/11 16:19:39
[sshd.c] include md5.h not hmac.h
-rw-r--r--ChangeLog5
-rw-r--r--sshd.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 3ea7d551f..68602a589 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,9 @@
- markus@cvs.openbsd.org 2002/02/11 16:17:55
[sshd.c]
do not complain about port > 1024 if rhosts-auth is disabled
+ - markus@cvs.openbsd.org 2002/02/11 16:19:39
+ [sshd.c]
+ include md5.h not hmac.h
20020210
- (djm) OpenBSD CVS Sync
@@ -7557,4 +7560,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.1841 2002/02/13 02:54:44 djm Exp $
+$Id: ChangeLog,v 1.1842 2002/02/13 02:55:06 djm Exp $
diff --git a/sshd.c b/sshd.c
index 54eb5eb34..4b049e387 100644
--- a/sshd.c
+++ b/sshd.c
@@ -40,11 +40,11 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sshd.c,v 1.225 2002/02/11 16:17:55 markus Exp $");
+RCSID("$OpenBSD: sshd.c,v 1.226 2002/02/11 16:19:39 markus Exp $");
#include <openssl/dh.h>
#include <openssl/bn.h>
-#include <openssl/hmac.h>
+#include <openssl/md5.h>
#include "ssh.h"
#include "ssh1.h"