diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-18 07:57:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-18 07:57:41 +0000 |
commit | 59e50ace281d97c3d5734668a48766f8ea1abf93 (patch) | |
tree | a6856f2f1cb6253cb3693791d6b120d6d9033a4d /sys/crypto | |
parent | b6b3661888425a4f46c9bd456228b095aac86007 (diff) |
incorrect panic message
Diffstat (limited to 'sys/crypto')
-rw-r--r-- | sys/crypto/criov.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/crypto/criov.c b/sys/crypto/criov.c index aac023840e6..45197df1bcb 100644 --- a/sys/crypto/criov.c +++ b/sys/crypto/criov.c @@ -1,4 +1,4 @@ -/* $OpenBSD: criov.c,v 1.3 2001/06/08 08:09:35 art Exp $ */ +/* $OpenBSD: criov.c,v 1.4 2001/06/18 07:57:40 deraadt Exp $ */ /* * Copyright (c) 1999 Theo de Raadt @@ -67,7 +67,7 @@ iov2pages(uio, np, pp, lp, maxp, nicep) next_page: if (pmap_extract(pmap_kernel(), va, &pa) == TRUE) - panic("mbuf2pages: unmapped pages"); + panic("iov2pages: unmapped pages 0x%x", va); pa += off; |