summaryrefslogtreecommitdiff
path: root/server/ddns.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2001-03-16 00:23:59 +0000
committerTed Lemon <source@isc.org>2001-03-16 00:23:59 +0000
commitc2318c2074260c86567ff9c895c972a046f01611 (patch)
tree7ac42fc4e22bb4d8ad72565d2ab7a8deaf2c50dc /server/ddns.c
parentcb8176c4ae799eb12afb669535c14348eb18f826 (diff)
downloadisc-dhcp-c2318c2074260c86567ff9c895c972a046f01611.tar.gz
ns_rcode -> isc_result_t
Diffstat (limited to 'server/ddns.c')
-rw-r--r--server/ddns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/ddns.c b/server/ddns.c
index 785970c7..b3daa2bd 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)