mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
Remove target buffer from dns_name_downcase()
There was just a single use of passing an extra buffer to dns_name_downcase() which have been replaced by simple call to isc_ascii_lowercase() and the 'target' argument from dns_name_downcase() function has been removed.
This commit is contained in:
@@ -1797,7 +1797,7 @@ update_nodes(dns_rpz_zone_t *rpz, isc_ht_t *newnodes) {
|
||||
goto next;
|
||||
}
|
||||
|
||||
dns_name_downcase(name, name, NULL);
|
||||
dns_name_downcase(name, name);
|
||||
|
||||
/* Add entry to the new nodes table */
|
||||
result = isc_ht_add(newnodes, name->ndata, name->length, rpz);
|
||||
|
Reference in New Issue
Block a user