summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1995-10-27 23:07:36 +0000
committerderaadt <deraadt@openbsd.org>1995-10-27 23:07:36 +0000
commit0f24f19f043adf66794df0d9d2da529275a66c11 (patch)
treefdedb7e1fe2d5cc0cb69ac1fc87791952d947818
parentNetBSD -> OpenBSD (diff)
downloadwireguard-openbsd-0f24f19f043adf66794df0d9d2da529275a66c11.tar.xz
wireguard-openbsd-0f24f19f043adf66794df0d9d2da529275a66c11.zip
ufs -> ffs
-rw-r--r--sys/arch/sparc/stand/installboot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/stand/installboot.c b/sys/arch/sparc/stand/installboot.c
index badac63ddd4..ec04556b7e7 100644
--- a/sys/arch/sparc/stand/installboot.c
+++ b/sys/arch/sparc/stand/installboot.c
@@ -310,8 +310,8 @@ int devfd;
if (fstatfs(fd, &statfsbuf) != 0)
err(1, "statfs: %s", boot);
- if (strncmp(statfsbuf.f_fstypename, "ufs", MFSNAMELEN))
- errx(1, "%s: must be on a UFS filesystem", boot);
+ if (strncmp(statfsbuf.f_fstypename, "ffs", MFSNAMELEN))
+ errx(1, "%s: must be on a FFS filesystem", boot);
if (fsync(fd) != 0)
err(1, "fsync: %s", boot);