diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2019-11-25 12:39:30 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2020-01-09 15:55:03 +0100 |
commit | 3f5047992019f9c1d436deb13447a010f0295f02 (patch) | |
tree | 4f472e16404dfcd6027bec6e3600c2000d2219c0 /low-can-binding/binding | |
parent | fad26418db56cf029d0b32f1fcc1309c545dac96 (diff) |
init: Fix wrong diagnostic bus name returned.
We use the bus name which isn't correct because it isn't the device name.
Bug-AGL: SPEC-2988
Change-Id: I5c9313817a3f3d423f8934cfab03e2cf20d48af2
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'low-can-binding/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); |