From eba01e2cbc14120e72f7408486af2a08cb5e7749 Mon Sep 17 00:00:00 2001 From: sheldonh Date: Fri, 28 Jul 2000 11:54:09 +0000 Subject: Rename the loadable nullfs kernel module: null -> nullfs --- sbin/mount_nullfs/mount_nullfs.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sbin/mount_nullfs') diff --git a/sbin/mount_nullfs/mount_nullfs.c b/sbin/mount_nullfs/mount_nullfs.c index cf61208..d38e7e3 100644 --- a/sbin/mount_nullfs/mount_nullfs.c +++ b/sbin/mount_nullfs/mount_nullfs.c @@ -107,12 +107,12 @@ main(argc, argv) args.target = target; - error = getvfsbyname("null", &vfc); - if (error && vfsisloadable("null")) { - if(vfsload("null")) - err(EX_OSERR, "vfsload(null)"); + error = getvfsbyname("nullfs", &vfc); + if (error && vfsisloadable("nullfs")) { + if(vfsload("nullfs")) + err(EX_OSERR, "vfsload(nullfs)"); endvfsent(); - error = getvfsbyname("null", &vfc); + error = getvfsbyname("nullfs", &vfc); } if (error) errx(EX_OSERR, "null/loopback filesystem is not available"); -- cgit v1.1