summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_bio.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-08-29 07:46:38 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-08-29 07:46:38 +0000
commit9df26654368d0ad3ae9ec7f619c92a4506875f07 (patch)
tree11f25f80a41c9cbddc6408489586596d7f7ec91b /sys/kern/vfs_bio.c
parente4e584ce7982cca54e6e125a114a1ad0468db938 (diff)
rnd -> random
Diffstat (limited to 'sys/kern/vfs_bio.c')
-rw-r--r--sys/kern/vfs_bio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c
index 3413619f5ac..edd97acee0f 100644
--- a/sys/kern/vfs_bio.c
+++ b/sys/kern/vfs_bio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_bio.c,v 1.10 1996/07/21 08:05:34 tholo Exp $ */
+/* $OpenBSD: vfs_bio.c,v 1.11 1996/08/29 07:46:37 deraadt Exp $ */
/* $NetBSD: vfs_bio.c,v 1.44 1996/06/11 11:15:36 pk Exp $ */
/*-
@@ -63,8 +63,8 @@
#include <vm/vm.h>
-#include "rnd.h"
-#if NRND > 0
+#include "random.h"
+#if NRANDOM > 0
#include <dev/rndvar.h>
#endif
@@ -964,7 +964,7 @@ biodone(bp)
panic("biodone already");
SET(bp->b_flags, B_DONE); /* note that it's done */
-#if NRND > 0
+#if NRANDOM > 0
add_blkdev_randomness(bp->b_dev);
#endif