diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-05-16 22:02:51 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-05-16 22:02:51 +0000 |
commit | 3ed6a41e4cd4b3e534217e4a432ff171e945f9d9 (patch) | |
tree | f4d0d6db8555fa0b428b1f07b95e30f2b73768a4 /usr.bin/ssh/kex.h | |
parent | 1ce174a7b8b5dd10f45feb4c736912e3d1a76763 (diff) |
fix warnings (openssl 0.9.7 requires const)
Diffstat (limited to 'usr.bin/ssh/kex.h')
-rw-r--r-- | usr.bin/ssh/kex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/kex.h b/usr.bin/ssh/kex.h index 2d3523a3633..12edcdc63b3 100644 --- a/usr.bin/ssh/kex.h +++ b/usr.bin/ssh/kex.h @@ -1,4 +1,4 @@ -/* $OpenBSD: kex.h,v 1.30 2002/03/18 17:50:31 provos Exp $ */ +/* $OpenBSD: kex.h,v 1.31 2002/05/16 22:02:50 markus Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -79,7 +79,7 @@ struct Enc { struct Mac { char *name; int enabled; - EVP_MD *md; + const EVP_MD *md; int mac_len; u_char *key; int key_len; |