diff options
author | imp <imp@FreeBSD.org> | 2004-10-10 06:37:56 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2004-10-10 06:37:56 +0000 |
commit | 1d181e7321e60436a85de690f633ee15f8b2f939 (patch) | |
tree | f9ab7a86cfc5c66ddc34ad836424dc34ade18810 /sbin/fsck_ffs | |
parent | 30d2ba06b99cf66c2da285f84cfe8045f629d2ad (diff) | |
download | FreeBSD-src-1d181e7321e60436a85de690f633ee15f8b2f939.zip FreeBSD-src-1d181e7321e60436a85de690f633ee15f8b2f939.tar.gz |
The got_siginfo = 0 should have been got_sigalarm=0 to match the other
passes.
Submitted by: Dworkin Muller
Diffstat (limited to 'sbin/fsck_ffs')
-rw-r--r-- | sbin/fsck_ffs/pass1b.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/fsck_ffs/pass1b.c b/sbin/fsck_ffs/pass1b.c index 45b6eac..e635935 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) |