Fix psl_builtin_outdated()

This commit is contained in:
Tim Rühsen 2015-09-27 19:14:13 +02:00
parent d1dec3d16e
commit 643e523f09
1 changed files with 3 additions and 3 deletions

View File

@ -972,10 +972,10 @@ int psl_builtin_outdated(void)
{
struct stat st;
if (stat(_psl_filename, &st) == 0 && st.st_mtime > _psl_file_time)
return 0;
if (stat(_psl_filename, &st) == 0 && st.st_mtime < _psl_file_time)
return 1;
return 1;
return 0;
}
/**