diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2004-04-07 22:45:51 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2004-04-07 22:45:51 +0000 |
commit | 49d2f3fa3f28f59974356f9256569c156a6e2659 (patch) | |
tree | 2f9f6a51fd70bf3de44250e6ac22400b4541e1b8 /sbin/isakmpd/exchange.h | |
parent | de3137aa6e339718ed70674a6b71f23a6e16ac4f (diff) |
-Wsign-compare nits. hshoexer@ ok.
Diffstat (limited to 'sbin/isakmpd/exchange.h')
-rw-r--r-- | sbin/isakmpd/exchange.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/exchange.h b/sbin/isakmpd/exchange.h index a50233f9161..333eb864482 100644 --- a/sbin/isakmpd/exchange.h +++ b/sbin/isakmpd/exchange.h @@ -1,4 +1,4 @@ -/* $OpenBSD: exchange.h,v 1.23 2003/06/03 14:28:16 ho Exp $ */ +/* $OpenBSD: exchange.h,v 1.24 2004/04/07 22:45:49 ho Exp $ */ /* $EOM: exchange.h,v 1.28 2000/09/28 12:54:28 niklas Exp $ */ /* @@ -145,7 +145,7 @@ struct exchange { /* Crypto info needed to encrypt/decrypt packets in this exchange. */ struct crypto_xf *crypto; - int key_length; + size_t key_length; struct keystate *keystate; /* Used only by KeyNote, to cache the key used to authenticate Phase 1 */ |