re-fix psl_builtin_outdated()

This commit is contained in:
Daniel Kahn Gillmor 2015-12-11 22:59:15 -05:00
parent 0ca3741df6
commit 01a3751524
1 changed files with 1 additions and 1 deletions

View File

@ -1098,7 +1098,7 @@ int psl_builtin_outdated(void)
{
struct stat st;
if (stat(_psl_filename, &st) == 0 && st.st_mtime < _psl_file_time)
if (stat(_psl_filename, &st) == 0 && st.st_mtime > _psl_file_time)
return 1;
return 0;