diff --git a/src/app_server.rs b/src/app_server.rs index eb7701b..a315daf 100644 --- a/src/app_server.rs +++ b/src/app_server.rs @@ -524,9 +524,11 @@ impl AppServer { use AppPollResult::*; use KeyOutputReason::*; match self.poll(&mut *rx)? { + #[allow(clippy::redundant_closure_call)] SendInitiation(peer) => tx_maybe_with!(peer, || self .crypt .initiate_handshake(peer.lower(), &mut *tx))?, + #[allow(clippy::redundant_closure_call)] SendRetransmission(peer) => tx_maybe_with!(peer, || self .crypt .retransmit_handshake(peer.lower(), &mut *tx))?,