2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +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

@@ -41,7 +41,7 @@
#include "printmsg.h"
static inline void
CHECKRESULT(dns_result_t result, char *msg)
CHECKRESULT(isc_result_t result, char *msg)
{
if (result != DNS_R_SUCCESS) {
printf("%s: %s\n", msg, dns_result_totext(result));
@@ -76,7 +76,7 @@ main(int argc, char *argv[]) {
unsigned char b[1000];
char s[1000];
dns_message_t *message;
dns_result_t result;
isc_result_t result;
isc_mem_t *mctx;
mctx = NULL;