From: Ted Lemon Date: Fri, 16 Mar 2001 00:23:59 +0000 (+0000) Subject: ns_rcode -> isc_result_t X-Git-Tag: V3-BETA-2-PATCH-19~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2318c2074260c86567ff9c895c972a046f01611;p=thirdparty%2Fdhcp.git ns_rcode -> isc_result_t --- diff --git a/server/ddns.c b/server/ddns.c index 785970c71..b3daa2bd0 100644 --- a/server/ddns.c +++ b/server/ddns.c @@ -43,7 +43,7 @@ #ifndef lint static char copyright[] = -"$Id: ddns.c,v 1.14 2001/02/22 07:37:15 mellon Exp $ Copyright (c) 2000-2001 The Internet Software Consortium. All rights reserved.\n"; +"$Id: ddns.c,v 1.15 2001/03/16 00:23:59 mellon Exp $ Copyright (c) 2000-2001 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -300,7 +300,7 @@ static isc_result_t ddns_update_ptr (struct data_string *ddns_fwd_name, { ns_updque updqueue; ns_updrec *updrec; - ns_rcode result = ISC_R_UNEXPECTED; + isc_result_t result = ISC_R_UNEXPECTED; /* * The DHCP server submits a DNS query which deletes all of the PTR RRs @@ -371,7 +371,7 @@ static isc_result_t ddns_remove_a (struct data_string *ddns_fwd_name, { ns_updque updqueue; ns_updrec *updrec; - ns_rcode result = SERVFAIL; + isc_result_t result = SERVFAIL; char ddns_address [16]; if (ddns_addr.len != 4)