diff options
author | 2001-06-18 07:57:40 +0000 | |
---|---|---|
committer | 2001-06-18 07:57:40 +0000 | |
commit | 71f13d1985e4342adaae24bd6e30e602b65ae29b (patch) | |
tree | 8902c35192f25f3f9aa25e62f915479717df49f9 | |
parent | copyright notices; noted missing by nate (diff) | |
download | wireguard-openbsd-71f13d1985e4342adaae24bd6e30e602b65ae29b.tar.xz wireguard-openbsd-71f13d1985e4342adaae24bd6e30e602b65ae29b.zip |
incorrect panic message
-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; |