From 47f285d797f07664a1491f2bd9b9e5f13ab15345 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Wed, 30 Jul 2025 17:02:07 +0200 Subject: [PATCH] Typo in comment Co-authored-by: Doug Freed Signed-off-by: Otto Moerbeek --- 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 33f609129..f294db278 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-reinterpret-cast) if (sendmsg(socket, &msg, 0) == -1) { throw PDNSException("Unable to send fd message over control channel: " + stringerror()); -- 2.47.2