Fix prev commit

This commit is contained in:
Howard Chu 2006-04-27 22:47:20 +00:00
parent 153e81817f
commit 32712f4c26

View file

@ -443,6 +443,9 @@ log_age_parse(char *agestr)
return -1;
t1 *= 60;
t1 += atoi( agestr );
} else if ( gotdays ) {
/* only got days+hh:mm */
t1 *= 60;
}
return t1;
}