From 5d68fffe2b3d499b938b98ef1500ef81ee85bd1b Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Tue, 26 Dec 1995 18:15:35 +0000 Subject: from netbsd; deal with ufs -> ffs transition --- sys/arch/alpha/stand/installboot.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/arch') diff --git a/sys/arch/alpha/stand/installboot.c b/sys/arch/alpha/stand/installboot.c index b0eb593395e..ce5e592d656 100644 --- a/sys/arch/alpha/stand/installboot.c +++ b/sys/arch/alpha/stand/installboot.c @@ -1,4 +1,4 @@ -/* $NetBSD: installboot.c,v 1.1 1995/11/23 02:39:02 cgd Exp $ */ +/* $NetBSD: installboot.c,v 1.2 1995/12/20 00:17:49 cgd Exp $ */ /* * Copyright (c) 1994 Paul Kranenburg @@ -301,8 +301,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, MOUNT_FFS, MFSNAMELEN)) + errx(1, "%s: must be on a FFS filesystem", boot); if (fsync(fd) != 0) err(1, "fsync: %s", boot); -- cgit v1.2.3