aboutsummaryrefslogtreecommitdiff
path: root/sbin/fsck_ffs
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2004-10-10 06:37:56 +0000
committerWarner Losh <imp@FreeBSD.org>2004-10-10 06:37:56 +0000
commite94598bb1666d982eaabe9c876de46dd51e4d519 (patch)
treef9ab7a86cfc5c66ddc34ad836424dc34ade18810 /sbin/fsck_ffs
parent042b7b1af0736a1511622c2e53b3c5e2b2259286 (diff)
downloadsrc-e94598bb1666d982eaabe9c876de46dd51e4d519.tar.gz
src-e94598bb1666d982eaabe9c876de46dd51e4d519.zip
The got_siginfo = 0 should have been got_sigalarm=0 to match the other
passes. Submitted by: Dworkin Muller
Notes
Notes: svn path=/head/; revision=136346
Diffstat (limited to 'sbin/fsck_ffs')
-rw-r--r--sbin/fsck_ffs/pass1b.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/fsck_ffs/pass1b.c b/sbin/fsck_ffs/pass1b.c
index 45b6eac62ecb..e635935fca00 100644
--- a/sbin/fsck_ffs/pass1b.c
+++ b/sbin/fsck_ffs/pass1b.c
@@ -70,7 +70,7 @@ pass1b(void)
if (got_sigalarm) {
setproctitle("%s p1b %d%%", cdevname,
c * 100 / sblock.fs_ncg);
- got_siginfo = 0;
+ got_sigalarm = 0;
}
for (i = 0; i < sblock.fs_ipg; i++, inumber++) {
if (inumber < ROOTINO)