diff options
author | mouring <mouring> | 2002-06-06 19:48:16 +0000 |
---|---|---|
committer | mouring <mouring> | 2002-06-06 19:48:16 +0000 |
commit | b59e5e6c1d42f3fd2e1f601eadd72174a4c42e5a (patch) | |
tree | 61ed052029e2a3f35f572af955a43c8773b27216 /mac.c | |
parent | a37d8f8ed0fac21b5f2968936a327dce97010578 (diff) | |
download | openssh-b59e5e6c1d42f3fd2e1f601eadd72174a4c42e5a.tar.gz |
- markus@cvs.openbsd.org 2002/05/16 22:02:50
[cipher.c kex.h mac.c]
fix warnings (openssl 0.9.7 requires const)
Diffstat (limited to 'mac.c')
-rw-r--r-- | mac.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: mac.c,v 1.4 2002/01/25 22:07:40 markus Exp $"); +RCSID("$OpenBSD: mac.c,v 1.5 2002/05/16 22:02:50 markus Exp $"); #include <openssl/hmac.h> @@ -36,7 +36,7 @@ RCSID("$OpenBSD: mac.c,v 1.4 2002/01/25 22:07:40 markus Exp $"); struct { char *name; - EVP_MD * (*mdfunc)(void); + const EVP_MD * (*mdfunc)(void); int truncatebits; /* truncate digest if != 0 */ } macs[] = { { "hmac-sha1", EVP_sha1, 0, }, |