From f730d7bdc241f2d716a37db561805f483c6142e2 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Tue, 11 Oct 2011 02:39:03 +0000 Subject: [PATCH] fix builtin_lookup to match new prototype --- bin/named/builtin.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/named/builtin.c b/bin/named/builtin.c index d6d7237bdd..060e156e88 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));