From: Dennis Koster Date: Tue, 22 May 2018 12:14:43 +0000 (+0200) Subject: Added IN to the output of API export function X-Git-Tag: dnsdist-1.3.1~76^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc420da695a7d0fadd1b96a0e5aa3fd8b76522c5;p=pdns Added IN to the output of API export function --- diff --git a/pdns/ws-auth.cc b/pdns/ws-auth.cc index 63214bddb..132273036 100644 --- a/pdns/ws-auth.cc +++ b/pdns/ws-auth.cc @@ -1460,6 +1460,7 @@ static void apiServerZoneExport(HttpRequest* req, HttpResponse* resp) { ss << rr.qname.toString() << "\t" << rr.ttl << "\t" << + "IN" << "\t" << rr.qtype.getName() << "\t" << makeApiRecordContent(rr.qtype, rr.content) << endl;