From c4c0300d19d5480fa7c037786e1743f5610513be Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 20 May 2000 00:45:45 +0000 Subject: [PATCH] We don't need to fsck -f filesystems, plain fsck is good enough. Define DEBUG_SETS to fsck -f by default instead. --- distrib/utils/sysinst/disks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distrib/utils/sysinst/disks.c b/distrib/utils/sysinst/disks.c index cccc208f41fc..6e27efc84595 100644 --- a/distrib/utils/sysinst/disks.c +++ b/distrib/utils/sysinst/disks.c @@ -1,4 +1,4 @@ -/* $NetBSD: disks.c,v 1.30 1999/07/04 21:52:11 cgd Exp $ */ +/* $NetBSD: disks.c,v 1.31 2000/05/20 00:45:45 wiz Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -440,7 +440,7 @@ do_fsck(const char *diskpart) } /*endwin();*/ -#ifdef DEBUG_SETS +#ifndef DEBUG_SETS err = run_prog(0, 1, NULL, "/sbin/fsck_ffs %s%s", upgr, raw); #else err = run_prog(0, 1, NULL, "/sbin/fsck_ffs -f %s%s", upgr, raw);