diff options
Diffstat (limited to 'crates/tor-proto/src/channel.rs')
| -rw-r--r-- | crates/tor-proto/src/channel.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/tor-proto/src/channel.rs b/crates/tor-proto/src/channel.rs index 32a1e152e..ef4fe6c57 100644 --- a/crates/tor-proto/src/channel.rs +++ b/crates/tor-proto/src/channel.rs @@ -876,13 +876,13 @@ impl Channel { sender, tx, })?; - let (id, circ_unique_id, padding_ctrl, padding_stream) = + let (circ_id, circ_unique_id, padding_ctrl, padding_stream) = rx.await.map_err(|_| ChannelClosed)??; - trace!("{}: Allocated CircId {}", circ_unique_id, id); + trace!("{}: Allocated CircId {}", circ_unique_id, circ_id); Ok(PendingClientTunnel::new( - id, + circ_id, self.clone(), createdreceiver, receiver, |
