diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-27 23:07:37 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-27 23:07:37 +0000 |
commit | c2acb6a537615fc3e3a7d16b4ea6b52bd6136490 (patch) | |
tree | f751bf6c4b2db91fc064c053c0dda15b9582f32d /sys | |
parent | ca7a2b90a9b24cd8486c036ef920eeae3dd19f62 (diff) |
ufs -> ffs
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc/stand/installboot.c | 4 |
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); |