From: Mark Andrews Date: Tue, 11 Oct 2011 02:39:03 +0000 (+0000) Subject: fix builtin_lookup to match new prototype X-Git-Tag: v9.9.0a3^2~50 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=f730d7bdc241f2d716a37db561805f483c6142e2;p=thirdparty%2Fbind9.git fix builtin_lookup to match new prototype --- diff --git a/bin/named/builtin.c b/bin/named/builtin.c index d6d7237bdd4..060e156e880 100644 --- a/bin/named/builtin.c +++ b/bin/named/builtin.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: builtin.c,v 1.21 2011/03/07 15:29:32 fdupont Exp $ */ +/* $Id: builtin.c,v 1.22 2011/10/11 02:39:03 marka Exp $ */ /*! \file * \brief @@ -241,11 +241,14 @@ dns64_cname(const char *zone, const char *name, dns_sdblookup_t *lookup) { static isc_result_t builtin_lookup(const char *zone, const char *name, void *dbdata, - dns_sdblookup_t *lookup) + dns_sdblookup_t *lookup, dns_clientinfomethods_t *methods, + dns_clientinfo_t *clientinfo) { builtin_t *b = (builtin_t *) dbdata; UNUSED(zone); + UNUSED(methods); + UNUSED(clientinfo); if (strcmp(name, "@") == 0) return (b->do_lookup(lookup));