From: Josh Soref Date: Fri, 28 Sep 2018 01:23:09 +0000 (-0400) Subject: Rename RecordTextException to rte X-Git-Tag: dnsdist-1.3.3~95^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81bb680e868c309246b097f7d26488385aae3a3e;p=thirdparty%2Fpdns.git Rename RecordTextException to rte --- diff --git a/pdns/dnsrecords.hh b/pdns/dnsrecords.hh index 4fcdd2382d..ea8c4af5e4 100644 --- a/pdns/dnsrecords.hh +++ b/pdns/dnsrecords.hh @@ -760,8 +760,8 @@ RNAME##RecordContent::RNAME##RecordContent(const string& zoneData) RecordTextReader rtr(zoneData); \ xfrPacket(rtr); \ } \ - catch(RecordTextException& rtr) { \ - throw MOADNSException("Parsing record content (try 'pdnsutil check-zone'): "+string(rtr.what())); \ + catch(RecordTextException& rte) { \ + throw MOADNSException("Parsing record content (try 'pdnsutil check-zone'): "+string(rte.what())); \ } \ } \ \