From 1adbac7409ade150095f501ed8d94f72b549d644 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Sat, 17 Dec 2022 10:22:09 +0100 Subject: [PATCH] dnsdist: Fix invalid parameter name in the channel --- pdns/channel.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/channel.hh b/pdns/channel.hh index 6d26dc1b6a..e221e6b267 100644 --- a/pdns/channel.hh +++ b/pdns/channel.hh @@ -138,7 +138,7 @@ namespace channel * \throw runtime_error if the channel creation failed. */ template > - std::pair, Receiver> createObjectQueue(bool sendNonBlocking = true, bool writeNonBlocking = true, size_t pipeBufferSize = 0, bool throwOnEOF = true); + std::pair, Receiver> createObjectQueue(bool sendNonBlocking = true, bool receiveNonBlocking = true, size_t pipeBufferSize = 0, bool throwOnEOF = true); /** * The notifier's end of a channel used to communicate between threads. -- 2.47.2