summaryrefslogtreecommitdiff
path: root/kex.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-06 19:48:16 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-06 19:48:16 +0000
commit6a2464136520a36be29fc64ebcf39ab59a599fad (patch)
tree078077246a8a8b24b8c19f63b45b687afb5b3378 /kex.h
parentfb62a6948834281fd5628e5566f17c1767a17763 (diff)
downloadopenssh-git-6a2464136520a36be29fc64ebcf39ab59a599fad.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 'kex.h')
-rw-r--r--kex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kex.h b/kex.h
index 2d3523a3..12edcdc6 100644
--- a/kex.h
+++ b/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;