diff options
author | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-07-15 01:49:14 +0000 |
---|---|---|
committer | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-07-15 01:49:14 +0000 |
commit | 2e7c5c717a53aaa64ee46f154d5792e7118599ed (patch) | |
tree | b36e3d564872c3ce7f311a60f322ba200cf53bba /usrp | |
parent | 134b8933fd898fbd6462d1c3c0175e1f8157a27f (diff) |
applied patch from ticket:358
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11443 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp')
-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)) { |