diff options
author | mattprost <matt.prost@ni.com> | 2020-04-08 16:39:14 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-04-09 09:58:20 -0500 |
commit | 722e944323c387f607d580ddfa2c5d9d2a1a76cc (patch) | |
tree | ccfa6a610077fd5a3b95620754ac512dfa7f9a66 /host/lib/usrp/mpmd | |
parent | c86bd938e7ff3debe1df09639e2479e02353ab17 (diff) | |
download | uhd-722e944323c387f607d580ddfa2c5d9d2a1a76cc.tar.gz uhd-722e944323c387f607d580ddfa2c5d9d2a1a76cc.tar.bz2 uhd-722e944323c387f607d580ddfa2c5d9d2a1a76cc.zip |
fixup! uhd: Add fuzzy serial number checking
Diffstat (limited to 'host/lib/usrp/mpmd')
-rw-r--r-- | host/lib/usrp/mpmd/mpmd_find.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/mpmd/mpmd_find.cpp b/host/lib/usrp/mpmd/mpmd_find.cpp index 9c7ea8958..e436c3998 100644 --- a/host/lib/usrp/mpmd/mpmd_find.cpp +++ b/host/lib/usrp/mpmd/mpmd_find.cpp @@ -112,7 +112,7 @@ device_addrs_t mpmd_find_with_addr( } // filter the discovered device below by matching optional keys if ((not hint_.has_key("name") or hint_["name"] == new_addr["name"]) - and (not hint_.has_key("serial") or uhd::serial_numbers_match(hint_["serial"], new_addr["serial"])) + and (not hint_.has_key("serial") or utils::serial_numbers_match(hint_["serial"], new_addr["serial"])) and (not hint_.has_key("type") or hint_["type"] == new_addr["type"] or hint_["type"] == MPM_CATCHALL_DEVICE_TYPE) and (not hint_.has_key("product") |