From: Ted Lemon Date: Wed, 17 Jan 2001 08:25:10 +0000 (+0000) Subject: Fix find_cached_zone declaration. X-Git-Tag: V3-BETA-2-PATCH-12~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a861af5af8bb2e56dc485f14f5932bf8eec8c8a8;p=thirdparty%2Fdhcp.git Fix find_cached_zone declaration. --- diff --git a/includes/dhcpd.h b/includes/dhcpd.h index 333d6583c..082169054 100644 --- a/includes/dhcpd.h +++ b/includes/dhcpd.h @@ -1906,9 +1906,9 @@ isc_result_t enter_dns_zone (struct dns_zone *); isc_result_t dns_zone_lookup (struct dns_zone **, const char *); int dns_zone_dereference PROTO ((struct dns_zone **, const char *, int)); #if defined (NSUPDATE) -ns_rcode find_cached_zone (const char *, ns_class, char *, - size_t, struct in_addr *, int, int *, - struct dns_zone **); +isc_result_t find_cached_zone (const char *, ns_class, char *, + size_t, struct in_addr *, int, int *, + struct dns_zone **); void forget_zone (struct dns_zone **); void repudiate_zone (struct dns_zone **); void cache_found_zone (ns_class, char *, struct in_addr *, int);