From 20740b8c64f44659d571acbdb7973e37ea824dbe Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Wed, 30 Jul 2025 18:05:21 +0200 Subject: [PATCH] Typo in comment --- pdns/recursordist/rec_channel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/recursordist/rec_channel.cc b/pdns/recursordist/rec_channel.cc index f294db278..136e20d31 100644 --- a/pdns/recursordist/rec_channel.cc +++ b/pdns/recursordist/rec_channel.cc @@ -158,7 +158,7 @@ static void sendfd(int socket, int fd_to_pass) cmsg->cmsg_len = CMSG_LEN(sizeof(int)); cmsg->cmsg_level = SOL_SOCKET; cmsg->cmsg_type = SCM_RIGHTS; - *reinterpret_cast(CMSG_DATA(cmsg)) = fd_to_pass; // NOLINT(cppcoreguidelines-pro-reinterpret-cast) + *reinterpret_cast(CMSG_DATA(cmsg)) = fd_to_pass; // NOLINT(cppcoreguidelines-pro-type-reinterpret-cast) if (sendmsg(socket, &msg, 0) == -1) { throw PDNSException("Unable to send fd message over control channel: " + stringerror()); -- 2.47.2