|
|
@ -126,16 +126,16 @@ static bool test_list_files() |
|
|
|
struct ipset_file *ifile; |
|
|
|
|
|
|
|
LIST_FOREACH(hfile, ¶ms.hostlists, next) |
|
|
|
if (!file_mod_time(hfile->filename)) |
|
|
|
if (!file_open_test(hfile->filename, O_RDONLY)) |
|
|
|
{ |
|
|
|
DLOG_PERROR("file_mod_time"); |
|
|
|
DLOG_PERROR("file_open_test"); |
|
|
|
DLOG_ERR("cannot access hostlist file '%s'\n",hfile->filename); |
|
|
|
return false; |
|
|
|
} |
|
|
|
LIST_FOREACH(ifile, ¶ms.ipsets, next) |
|
|
|
if (!file_mod_time(ifile->filename)) |
|
|
|
if (!file_open_test(ifile->filename, O_RDONLY)) |
|
|
|
{ |
|
|
|
DLOG_PERROR("file_mod_time"); |
|
|
|
DLOG_PERROR("file_open_test"); |
|
|
|
DLOG_ERR("cannot access ipset file '%s'\n",ifile->filename); |
|
|
|
return false; |
|
|
|
} |
|
|
|