summaryrefslogtreecommitdiff
path: root/sys/arch/sparc/stand/installboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/sparc/stand/installboot.c')
-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);