disregard it when calculating when the next check will
take place by e2fsck.
+2004-05-04 Theodore Ts'o <tytso@mit.edu>
+
+ * unix.c (check_if_skip): If the checkinterval is zero, then
+ disregard it when calculating when the next check will
+ take place.
+
2004-04-12 Theodore Ts'o <tytso@mit.edu>
* unix.c (is_on_batt): Be more flexible about the name of the ACPI
if (next_check <= 0)
next_check = 1;
}
- if ((now - fs->super->s_lastcheck) >= fs->super->s_checkinterval)
+ if (fs->super->s_checkinterval &&
+ ((now - fs->super->s_lastcheck) >= fs->super->s_checkinterval))
next_check = 1;
if (next_check <= 5) {
if (next_check == 1)