From: Otto Moerbeek Date: Wed, 30 Jul 2025 16:05:21 +0000 (+0200) Subject: Typo in comment X-Git-Tag: auth-5.1.0-alpha0~3^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F15949%2Fhead;p=thirdparty%2Fpdns.git Typo in comment --- 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());