diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-17 20:09:47 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-17 20:09:47 +0000 |
commit | 3870275ad0170b6d8d672742a7ef6918986e4bc0 (patch) | |
tree | 001e68b0ac4023a2799f8bdc3c4eb53f3081eb9d /sys | |
parent | cdfd25e6ef04be9fa098431ed5eb26c17f19f76a (diff) |
Make comment reflect reality and fix a typo
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/vnd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vnd.c b/sys/dev/vnd.c index 6eb7c75e603..2c6cd0e20c9 100644 --- a/sys/dev/vnd.c +++ b/sys/dev/vnd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vnd.c,v 1.11 1997/05/17 19:48:38 deraadt Exp $ */ +/* $OpenBSD: vnd.c,v 1.12 1997/05/17 20:09:46 millert Exp $ */ /* $NetBSD: vnd.c,v 1.26 1996/03/30 23:06:11 christos Exp $ */ /* @@ -426,7 +426,7 @@ vndstrategy(bp) /* * It seems we can get NULL proc pointers in bp->b_proc * that causes a quota check in VOP_WRITE to fault. - * In that case cahalk it up on proc0 instead, for + * In that case chalk it up on curproc instead, for * safety. */ auio.uio_procp = (bp->b_proc ? bp->b_proc : curproc); |