diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2007-05-27 05:33:48 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2007-05-27 05:33:48 +0000 |
commit | 63fee2b348dc8840b4818efa6d8d1154a6b3d830 (patch) | |
tree | f303ffa0812fa15d19c2f15619f17a68cf7f499e /sys/crypto | |
parent | fb16b4c2d6add9cfd0cf0ea97110ce802c4fbc8c (diff) |
make crp_buf a void *. caddr_t implies bufferness, it's not.
ok deraadt jason
Diffstat (limited to 'sys/crypto')
-rw-r--r-- | sys/crypto/cryptodev.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/crypto/cryptodev.h b/sys/crypto/cryptodev.h index 37e1587c40d..58a3eeabb64 100644 --- a/sys/crypto/cryptodev.h +++ b/sys/crypto/cryptodev.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cryptodev.h,v 1.44 2006/05/31 23:01:44 tedu Exp $ */ +/* $OpenBSD: cryptodev.h,v 1.45 2007/05/27 05:33:47 tedu Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -165,7 +165,7 @@ struct cryptop { #define CRYPTO_F_NOQUEUE 0x0008 /* Don't use crypto queue/thread */ #define CRYPTO_F_DONE 0x0010 /* request completed */ - caddr_t crp_buf; /* Data to be processed */ + void *crp_buf; /* Data to be processed */ void *crp_opaque; /* Opaque pointer, passed along */ struct cryptodesc *crp_desc; /* Linked list of processing descriptors */ |