diff options
author | 1995-10-27 23:07:36 +0000 | |
---|---|---|
committer | 1995-10-27 23:07:36 +0000 | |
commit | 0f24f19f043adf66794df0d9d2da529275a66c11 (patch) | |
tree | fdedb7e1fe2d5cc0cb69ac1fc87791952d947818 | |
parent | NetBSD -> OpenBSD (diff) | |
download | wireguard-openbsd-0f24f19f043adf66794df0d9d2da529275a66c11.tar.xz wireguard-openbsd-0f24f19f043adf66794df0d9d2da529275a66c11.zip |
ufs -> ffs
-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); |