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)
- 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 2d3523a36..12edcdc63 100644
--- a/kex.h
+++ b/kex.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: kex.h,v 1.30 2002/03/18 17:50:31 provos Exp $ */ 1/* $OpenBSD: kex.h,v 1.31 2002/05/16 22:02:50 markus Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
@@ -79,7 +79,7 @@ struct Enc {
79struct Mac { 79struct Mac {
80 char *name; 80 char *name;
81 int enabled; 81 int enabled;
82 EVP_MD *md; 82 const EVP_MD *md;
83 int mac_len; 83 int mac_len;
84 u_char *key; 84 u_char *key;
85 int key_len; 85 int key_len;