rm warning in getdns_convert_dns_name_to_fqdn

This commit is contained in:
Willem Toorop 2014-02-03 23:38:29 +01:00
parent 41a2554803
commit 53b7949866
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ getdns_convert_dns_name_to_fqdn(const char *name_from_dns_response)
char *str;
ldns_rdf *rdf = ldns_rdf_new(LDNS_RDF_TYPE_DNAME,
sizeof_dname((uint8_t *)name_from_dns_response),
name_from_dns_response);
(void *)name_from_dns_response); /* unconst is safe here */
if (!rdf) return NULL;
str = ldns_rdf2str(rdf);
ldns_rdf_free(rdf);