diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2019-11-25 12:39:30 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2019-12-03 19:46:26 +0100 |
commit | 386fb28d799f6f1557860c7b31e879eb547d78c2 (patch) | |
tree | 9e5efc33e73d87a55a06bd298959c6b151c46e47 /low-can-binding | |
parent | d3ec67b912df6e67239cd5b283135d077dc78744 (diff) |
init: Fix wrong diagnostic bus name returned.
We use the bus name which isn't correct because it isn't the device name.
Change-Id: I5c9313817a3f3d423f8934cfab03e2cf20d48af2
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'low-can-binding')
-rw-r--r-- | low-can-binding/binding/low-can-subscription.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/low-can-binding/binding/low-can-subscription.cpp b/low-can-binding/binding/low-can-subscription.cpp index 0f1d1da7..3cbcb6c9 100644 --- a/low-can-binding/binding/low-can-subscription.cpp +++ b/low-can-binding/binding/low-can-subscription.cpp @@ -370,7 +370,7 @@ int low_can_subscription_t::open_socket(low_can_subscription_t &subscription, co if( subscription.signal_ ) ret = subscription.socket_->open(subscription.signal_->get_message()->get_bus_device_name()); else if(! subscription.diagnostic_message_.empty()) - ret = subscription.socket_->open(application_t::instance().get_diagnostic_manager().get_bus_name()); + ret = subscription.socket_->open(application_t::instance().get_diagnostic_manager().get_bus_device_name()); else if(! bus_name.empty()) ret = subscription.socket_->open(bus_name); |