2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-10-01 11:23:25 +00:00

dns_result_t is no more. s/dns_result_t/isc_result_t/ -- more later, when I need a break.

This commit is contained in:
Michael Graff
1999-12-23 00:09:04 +00:00
parent 542189f21b
commit 3ddd814a97
131 changed files with 1299 additions and 1297 deletions

View File

@@ -539,7 +539,7 @@ t_getdate(char *buf, size_t buflen)
/* some generally used utilities */
struct dns_errormap {
dns_result_t result;
isc_result_t result;
char *text;
} dns_errormap[] = {
{ DNS_R_SUCCESS, "DNS_R_SUCCESS" },
@@ -587,13 +587,13 @@ struct dns_errormap {
{ DNS_R_NXRDATASET, "DNS_R_NXRDATASET" },
{ DNS_R_BADDB, "DNS_R_BADDB" },
{ DNS_R_ZONECUT, "DNS_R_ZONECUT" },
{ (dns_result_t) 0, NULL }
{ (isc_result_t) 0, NULL }
};
dns_result_t
isc_result_t
t_dns_result_fromtext(char *name) {
dns_result_t result;
isc_result_t result;
struct dns_errormap *pmap;
result = DNS_R_UNEXPECTED;