From: Remi Gacogne Date: Mon, 4 Mar 2024 10:02:56 +0000 (+0100) Subject: dnsname: Fix formatting issue X-Git-Tag: dnsdist-1.10.0-alpha0~16^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=981c43ec9b61a942b0f539084fed1a24ed3ad301;p=thirdparty%2Fpdns.git dnsname: Fix formatting issue --- diff --git a/pdns/dnsname.hh b/pdns/dnsname.hh index 12a2acb2cc..0d9112b2ad 100644 --- a/pdns/dnsname.hh +++ b/pdns/dnsname.hh @@ -218,7 +218,7 @@ private: string_t d_storage; void packetParser(const char* qpos, size_t len, size_t offset, bool uncompress, uint16_t* qtype, uint16_t* qclass, unsigned int* consumed, int depth, uint16_t minOffset); -size_t parsePacketUncompressed(const pdns::views::UnsignedCharView& view, size_t position, bool uncompress); + size_t parsePacketUncompressed(const pdns::views::UnsignedCharView& view, size_t position, bool uncompress); static void appendEscapedLabel(std::string& appendTo, const char* orig, size_t len); static std::string unescapeLabel(const std::string& orig); static void throwSafeRangeError(const std::string& msg, const char* buf, size_t length);