diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-06-06 04:49:46 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-06-06 04:49:46 +0000 |
commit | 3853e014654bea96268b2eac974e620b674d8dcc (patch) | |
tree | cb73b55f36cef266d0832892c253d4aea75f2700 /sys/crypto | |
parent | ee1d7cfceb2f06d438e37aca407be87faa58f4b4 (diff) |
Replace all the opaque pointers with just one.
Diffstat (limited to 'sys/crypto')
-rw-r--r-- | sys/crypto/crypto.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/crypto/crypto.h b/sys/crypto/crypto.h index 0b1459fa425..a008bdb96da 100644 --- a/sys/crypto/crypto.h +++ b/sys/crypto/crypto.h @@ -116,10 +116,7 @@ struct cryptop caddr_t crp_buf; /* Data to be processed */ - caddr_t crp_opaque1;/* Opaque pointer, passed along */ - caddr_t crp_opaque2;/* Opaque pointer, passed along */ - caddr_t crp_opaque3;/* Opaque pointer, passed along */ - caddr_t crp_opaque4;/* Opaque pointer, passed along */ + caddr_t crp_opaque;/* Opaque pointer, passed along */ struct cryptodesc *crp_desc; /* Linked list of processing descriptors */ |