summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-02-13 13:55:06 +1100
committerDamien Miller <djm@mindrot.org>2002-02-13 13:55:06 +1100
commit6a47f30c55ac5edc984f6c914379d1f0ff2c0cef (patch)
tree758baa5b2459dd475392b0bdc8f866498dbdf951
parent654c03fd064618e3577d098837108263f4e5457a (diff)
- 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 @@
10 - markus@cvs.openbsd.org 2002/02/11 16:17:55 10 - markus@cvs.openbsd.org 2002/02/11 16:17:55
11 [sshd.c] 11 [sshd.c]
12 do not complain about port > 1024 if rhosts-auth is disabled 12 do not complain about port > 1024 if rhosts-auth is disabled
13 - markus@cvs.openbsd.org 2002/02/11 16:19:39
14 [sshd.c]
15 include md5.h not hmac.h
13 16
1420020210 1720020210
15 - (djm) OpenBSD CVS Sync 18 - (djm) OpenBSD CVS Sync
@@ -7557,4 +7560,4 @@
7557 - Wrote replacements for strlcpy and mkdtemp 7560 - Wrote replacements for strlcpy and mkdtemp
7558 - Released 1.0pre1 7561 - Released 1.0pre1
7559 7562
7560$Id: ChangeLog,v 1.1841 2002/02/13 02:54:44 djm Exp $ 7563$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 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: sshd.c,v 1.225 2002/02/11 16:17:55 markus Exp $"); 43RCSID("$OpenBSD: sshd.c,v 1.226 2002/02/11 16:19:39 markus Exp $");
44 44
45#include <openssl/dh.h> 45#include <openssl/dh.h>
46#include <openssl/bn.h> 46#include <openssl/bn.h>
47#include <openssl/hmac.h> 47#include <openssl/md5.h>
48 48
49#include "ssh.h" 49#include "ssh.h"
50#include "ssh1.h" 50#include "ssh1.h"