diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-11-19 22:13:48 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-11-19 22:13:48 +0000 |
commit | 6e79f8404b134d65688057686c54fac263e8dad5 (patch) | |
tree | 92c97babf55cc958e7755a2281f4bcc6cb9c9bee /sys | |
parent | 479451171fbf602189f9d8d491c66eb60e8cb690 (diff) |
typo; from bret lambert
ok pedro
Diffstat (limited to 'sys')
-rw-r--r-- | sys/crypto/criov.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/crypto/criov.c b/sys/crypto/criov.c index 8d183d94000..cd1b5c41d8c 100644 --- a/sys/crypto/criov.c +++ b/sys/crypto/criov.c @@ -1,4 +1,4 @@ -/* $OpenBSD: criov.c,v 1.14 2003/08/14 15:18:05 jason Exp $ */ +/* $OpenBSD: criov.c,v 1.15 2006/11/19 22:13:47 jmc Exp $ */ /* * Copyright (c) 1999 Theo de Raadt @@ -143,7 +143,7 @@ cuio_apply(struct uio *uio, int off, int len, ind = 0; while (off > 0) { if (ind >= uio->uio_iovcnt) - panic("cui_apply: ind %d >= uio_iovcnt %d for off", + panic("cuio_apply: ind %d >= uio_iovcnt %d for off", ind, uio->uio_iovcnt); uiolen = uio->uio_iov[ind].iov_len; if (off < uiolen) @@ -153,7 +153,7 @@ cuio_apply(struct uio *uio, int off, int len, } while (len > 0) { if (ind >= uio->uio_iovcnt) - panic("cui_apply: ind %d >= uio_iovcnt %d for len", + panic("cuio_apply: ind %d >= uio_iovcnt %d for len", ind, uio->uio_iovcnt); count = min(uio->uio_iov[ind].iov_len - off, len); |