summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2002-02-11 16:19:40 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2002-02-11 16:19:40 +0000
commitf9fd272ce624144db94cd223730653d6e1e98c35 (patch)
treed13e99e3a464b1464544165406828466beb5217d /usr.bin
parentf6dd04f63cd5363544b32554a993a0cf84455f1c (diff)
include md5.h not hmac.h
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c
index 579de73173e..cc5e2843693 100644
--- a/usr.bin/ssh/sshd.c
+++ b/usr.bin/ssh/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"