From: Remi Gacogne Date: Sat, 17 Dec 2022 09:22:09 +0000 (+0100) Subject: dnsdist: Fix invalid parameter name in the channel X-Git-Tag: rec-5.0.0-alpha1~161^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1adbac7409ade150095f501ed8d94f72b549d644;p=thirdparty%2Fpdns.git dnsdist: Fix invalid parameter name in the channel --- 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.