diff options
author | Damien Miller <djm@mindrot.org> | 2002-02-13 03:55:06 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-02-13 03:55:06 +0100 |
commit | 6a47f30c55ac5edc984f6c914379d1f0ff2c0cef (patch) | |
tree | 758baa5b2459dd475392b0bdc8f866498dbdf951 /sshd.c | |
parent | - markus@cvs.openbsd.org 2002/02/11 16:17:55 (diff) | |
download | openssh-6a47f30c55ac5edc984f6c914379d1f0ff2c0cef.tar.xz openssh-6a47f30c55ac5edc984f6c914379d1f0ff2c0cef.zip |
- markus@cvs.openbsd.org 2002/02/11 16:19:39
[sshd.c]
include md5.h not hmac.h
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |