summaryrefslogtreecommitdiff
path: root/sys/crypto/cryptodev.h
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2003-08-14 15:18:06 +0000
committerJason Wright <jason@cvs.openbsd.org>2003-08-14 15:18:06 +0000
commit5af369cda4cea19679171ef5c7f907af3f2cfbff (patch)
treee4e97ecec1fa4f1c546520cb7f6f57310d48c4e1 /sys/crypto/cryptodev.h
parentb6c5a0b1886ac6f0aca4a9176b88611fda05d10d (diff)
mirror change in mbufs: cuio_copyback's 4th arg is now const void *
Diffstat (limited to 'sys/crypto/cryptodev.h')
-rw-r--r--sys/crypto/cryptodev.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/crypto/cryptodev.h b/sys/crypto/cryptodev.h
index b4bac3a7e58..eac54325840 100644
--- a/sys/crypto/cryptodev.h
+++ b/sys/crypto/cryptodev.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cryptodev.h,v 1.41 2003/07/24 15:29:38 markus Exp $ */
+/* $OpenBSD: cryptodev.h,v 1.42 2003/08/14 15:18:05 jason Exp $ */
/*
* The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu)
@@ -314,7 +314,7 @@ void crypto_kdone(struct cryptkop *);
int crypto_getfeat(int *);
void cuio_copydata(struct uio *, int, int, caddr_t);
-void cuio_copyback(struct uio *, int, int, caddr_t);
+void cuio_copyback(struct uio *, int, int, const void *);
int cuio_getptr(struct uio *, int, int *);
int cuio_apply(struct uio *, int, int,
int (*f)(caddr_t, caddr_t, unsigned int), caddr_t);