From: Peter van Dijk Date: Thu, 18 Jul 2024 17:23:15 +0000 (+0200) Subject: adjust field order and remove trailing tab X-Git-Tag: rec-5.2.0-alpha1~156^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9780a4c6a878b695bfe44617ac113a5046be4a9f;p=thirdparty%2Fpdns.git adjust field order and remove trailing tab --- diff --git a/pdns/pdnsutil.cc b/pdns/pdnsutil.cc index 7c9018fb05..ce7de1c555 100644 --- a/pdns/pdnsutil.cc +++ b/pdns/pdnsutil.cc @@ -4262,7 +4262,7 @@ try bool found = false; DNSZoneRecord resultZoneRecord; while (matchingBackend->get(resultZoneRecord)) { - cout << resultZoneRecord.dr.d_name.toString() << "\t" << resultZoneRecord.dr.getContent()->getZoneRepresentation() << "\t" << std::to_string(resultZoneRecord.dr.d_ttl) << "\t" << QClass(resultZoneRecord.dr.d_class).toString() << "\t" << DNSRecordContent::NumberToType(resultZoneRecord.dr.d_type, resultZoneRecord.dr.d_class) << "\t" << endl; + cout << resultZoneRecord.dr.d_name.toString() << "\t" << std::to_string(resultZoneRecord.dr.d_ttl) << "\t" << QClass(resultZoneRecord.dr.d_class).toString() << "\t" << DNSRecordContent::NumberToType(resultZoneRecord.dr.d_type, resultZoneRecord.dr.d_class) << "\t" << resultZoneRecord.dr.getContent()->getZoneRepresentation() << endl; found = true; } if (!found) {