Don't set arbitrary cache timeouts for DNS stuff

This commit is contained in:
Michael Foster 2013-08-29 20:40:39 +10:00
parent 3f26aa5ac3
commit 8144e517e9

View File

@ -2003,7 +2003,7 @@ function rDNS($ip_addr) {
}
if ($config['cache']['enabled'])
cache::set('rdns_' . $ip_addr, $host, 3600);
cache::set('rdns_' . $ip_addr, $host);
return $host;
}
@ -2028,7 +2028,7 @@ function DNS($host) {
}
if ($config['cache']['enabled'])
cache::set('dns_' . $host, $ip_addr !== false ? $ip_addr : '?', 3600);
cache::set('dns_' . $host, $ip_addr !== false ? $ip_addr : '?');
return $ip_addr;
}