diff options
author | mike <mike@FreeBSD.org> | 2002-10-11 14:58:34 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-10-11 14:58:34 +0000 |
commit | 8630abe45fe3751d8cc345f537ad98962a59ef5e (patch) | |
tree | 60ccb9ea10edcf3d8fc8975fb348b756ea207e35 /sys/opencrypto | |
parent | b3c0f70717dc721a9076491fe80fef2e28c95424 (diff) | |
download | FreeBSD-src-8630abe45fe3751d8cc345f537ad98962a59ef5e.zip FreeBSD-src-8630abe45fe3751d8cc345f537ad98962a59ef5e.tar.gz |
Change iov_base's type from `char *' to the standard `void *'. All
uses of iov_base which assume its type is `char *' (in order to do
pointer arithmetic) have been updated to cast iov_base to `char *'.
Diffstat (limited to 'sys/opencrypto')
-rw-r--r-- | sys/opencrypto/cryptosoft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/opencrypto/cryptosoft.c b/sys/opencrypto/cryptosoft.c index b6ead2a..09c429b 100644 --- a/sys/opencrypto/cryptosoft.c +++ b/sys/opencrypto/cryptosoft.c @@ -388,7 +388,7 @@ swcr_encdec(struct cryptodesc *crd, struct swcr_data *sw, caddr_t buf, * we only use it in the while() loop, only if * there are indeed enough data. */ - idat = iov->iov_base + k; + idat = (char *)iov->iov_base + k; while (iov->iov_len >= k + blks && i > 0) { if (crd->crd_flags & CRD_F_ENCRYPT) { |