From 981c43ec9b61a942b0f539084fed1a24ed3ad301 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Mon, 4 Mar 2024 11:02:56 +0100 Subject: [PATCH] dnsname: Fix formatting issue --- pdns/dnsname.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/dnsname.hh b/pdns/dnsname.hh index 12a2acb2cc36..0d9112b2ad21 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);