make tdig also emit section name

This commit is contained in:
bert hubert
2018-10-15 09:29:24 +02:00
parent 08e9694714
commit fe72276ec0

View File

@ -49,7 +49,7 @@ try
std::unique_ptr<RRGen> rr;
while(dmr.getRR(rrsection, dn, dt, ttl, rr)) {
cout << dn<< " IN " << dt << " " << ttl << " " <<rr->toString()<<endl;
cout << rrsection<<" "<<dn<< " IN " << dt << " " << ttl << " " <<rr->toString()<<endl;
}
}