aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_subr.c
diff options
context:
space:
mode:
authorMike Silbersack <silby@FreeBSD.org>2004-02-04 08:43:21 +0000
committerMike Silbersack <silby@FreeBSD.org>2004-02-04 08:43:21 +0000
commitff5e43a3fd2172b402cb38989e877ef456080ae6 (patch)
tree9917a8d05e25d4e3cbc5d8421e90a036de3320fd /sys/kern/kern_subr.c
parent8d719eb22e4a7291b45ee42926e7e4170c278ac9 (diff)
downloadsrc-ff5e43a3fd2172b402cb38989e877ef456080ae6.tar.gz
src-ff5e43a3fd2172b402cb38989e877ef456080ae6.zip
Rename iov_to_uio to uiofromiov to be more consistent with other
uio* functions. Suggested by: bde
Notes
Notes: svn path=/head/; revision=125423
Diffstat (limited to 'sys/kern/kern_subr.c')
-rw-r--r--sys/kern/kern_subr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_subr.c b/sys/kern/kern_subr.c
index 1040aba81dce..a5a29150dd54 100644
--- a/sys/kern/kern_subr.c
+++ b/sys/kern/kern_subr.c
@@ -485,7 +485,7 @@ copyinstrfrom(const void * __restrict src, void * __restrict dst, size_t len,
}
int
-iov_to_uio(struct iovec *iovp, u_int iovcnt, struct uio *uio)
+uiofromiov(struct iovec *iovp, u_int iovcnt, struct uio *uio)
{
struct iovec *iov;
u_int iovlen;