From: Konrad Wojas Date: Tue, 31 Jan 2017 04:56:03 +0000 (+0800) Subject: Pass existing UeberBackend to DNSSECKeeper X-Git-Tag: rec-4.1.0-alpha1~284^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=adef67eb4953ec32f9a4a3004b2e76040cb58e63;p=thirdparty%2Fpdns.git Pass existing UeberBackend to DNSSECKeeper --- diff --git a/pdns/ws-auth.cc b/pdns/ws-auth.cc index ac4b0e868f..938b0b073d 100644 --- a/pdns/ws-auth.cc +++ b/pdns/ws-auth.cc @@ -325,7 +325,7 @@ static void fillZone(const DNSName& zonename, HttpResponse* resp) { if(!B.getDomainInfo(zonename, di)) throw ApiException("Could not find domain '"+zonename.toString()+"'"); - DNSSECKeeper dk; + DNSSECKeeper dk(&B); Json::object doc = getZoneInfo(di, &dk); // extra stuff getZoneInfo doesn't do for us (more expensive) string soa_edit_api;