diff options
-rw-r--r-- | usrp/limbo/inband/usrp_server.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usrp/limbo/inband/usrp_server.cc b/usrp/limbo/inband/usrp_server.cc index ac26363088..4f5f396b44 100644 --- a/usrp/limbo/inband/usrp_server.cc +++ b/usrp/limbo/inband/usrp_server.cc @@ -256,10 +256,11 @@ usrp_server::handle_message(mb_message_sptr msg) return; // Find the port through the owner of the channel - if((port = tx_port_index(d_chaninfo_tx[channel].owner)) !=-1 ) + if((port = tx_port_index(d_chaninfo_tx[channel].owner)) !=-1 ){ d_tx[port]->send(s_response_xmit_raw_frame, pmt_list2(invocation_handle, status)); - return; + return; + } } //--------------- USRP READ ---------------// else if (pmt_eq(event, s_response_usrp_read)) { |