Fix bad cache-size calculation when hosts-file read fails.

This commit is contained in:
André Glüpker
2016-01-12 12:54:17 +00:00
committed by Simon Kelley
parent a63b8b89e6
commit eddf365284
2 changed files with 5 additions and 1 deletions

View File

@@ -919,7 +919,7 @@ int read_hostsfile(char *filename, unsigned int index, int cache_size, struct cr
if (!f)
{
my_syslog(LOG_ERR, _("failed to load names from %s: %s"), filename, strerror(errno));
return 0;
return cache_size;
}
eatspace(f);