aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--host/include/uhd/rfnoc/node_ctrl_base.ipp4
1 files changed, 3 insertions, 1 deletions
diff --git a/host/include/uhd/rfnoc/node_ctrl_base.ipp b/host/include/uhd/rfnoc/node_ctrl_base.ipp
index 266df445a..cb56e2d90 100644
--- a/host/include/uhd/rfnoc/node_ctrl_base.ipp
+++ b/host/include/uhd/rfnoc/node_ctrl_base.ipp
@@ -64,7 +64,9 @@ namespace uhd {
continue;
}
if (active_only
- and not (downstream ? _tx_streamer_active[our_port] : _rx_streamer_active[our_port] )) {
+ and not (downstream ?
+ _tx_streamer_active[connected_port] :
+ _rx_streamer_active[connected_port] )) {
continue;
}
sptr one_next_node = it->second.lock();