mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-12 05:32:42 -04:00
Make this compile again after the dns_rdataset_totext()
This commit is contained in:
parent
3ff8d68793
commit
597bdfef60
2 changed files with 4 additions and 2 deletions
|
|
@ -82,7 +82,8 @@ print_rdataset(dns_name_t *name, dns_rdataset_t *rdataset) {
|
|||
isc_region_t r;
|
||||
|
||||
isc_buffer_init(&text, t, sizeof t, ISC_BUFFERTYPE_TEXT);
|
||||
result = dns_rdataset_totext(rdataset, name, ISC_FALSE, &text);
|
||||
result = dns_rdataset_totext(rdataset, name, ISC_FALSE, &text,
|
||||
ISC_FALSE);
|
||||
isc_buffer_used(&text, &r);
|
||||
if (result == DNS_R_SUCCESS)
|
||||
printf("%.*s", (int)r.length, (char *)r.base);
|
||||
|
|
|
|||
|
|
@ -45,7 +45,8 @@ print_dataset(dns_rdatacallbacks_t *callbacks, dns_name_t *owner,
|
|||
callbacks = callbacks; /*unused*/
|
||||
|
||||
isc_buffer_init(&target, buf, 64*1024, ISC_BUFFERTYPE_TEXT);
|
||||
result = dns_rdataset_totext(dataset, owner, ISC_FALSE, &target);
|
||||
result = dns_rdataset_totext(dataset, owner, ISC_FALSE, &target,
|
||||
ISC_FALSE);
|
||||
if (result == DNS_R_SUCCESS)
|
||||
fprintf(stdout, "%.*s\n", (int)target.used,
|
||||
(char*)target.base);
|
||||
|
|
|
|||
Loading…
Reference in a new issue