From 35c772d551442c5be4edb0cabe696744727c19d1 Mon Sep 17 00:00:00 2001 From: michael-west Date: Thu, 20 Dec 2018 22:53:23 -0800 Subject: RFNoC: Fix for late packet errors - Fix variable name in recent graph traversal changes --- host/include/uhd/rfnoc/node_ctrl_base.ipp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'host/include') 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(); -- cgit v1.2.3