mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 10:18:25 +00:00
Tweak blockdata accounting.
This commit is contained in:
@@ -24,7 +24,7 @@ static unsigned int blockdata_count = 0, blockdata_hwm = 0;
|
||||
void blockdata_report(void)
|
||||
{
|
||||
my_syslog(LOG_INFO, _("DNSSEC memory in use %u, max %u"),
|
||||
blockdata_count * KEYBLOCK_LEN, blockdata_hwm * KEYBLOCK_LEN);
|
||||
blockdata_count * sizeof(struct blockdata), blockdata_hwm * sizeof(struct blockdata));
|
||||
}
|
||||
|
||||
struct blockdata *blockdata_alloc(char *data, size_t len)
|
||||
|
||||
Reference in New Issue
Block a user