diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-13 00:01:41 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:10:41 +0100 |
commit | 2471f77c91357454c7e2449a70ca429d09884965 (patch) | |
tree | b268b8cab70e56e19a9db2274a7ff36f8342693d /src/configuration.hpp | |
parent | c54a5d14c001d544a72f3cd27553036e0649f3b1 (diff) |
Change configuration location into an etc directory.
Change-Id: I4648f2eb203f37844bfb8deb2527f93b4852e82c
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/configuration.hpp')
-rw-r--r-- | src/configuration.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configuration.hpp b/src/configuration.hpp index 321b96ea..82bcbc7f 100644 --- a/src/configuration.hpp +++ b/src/configuration.hpp @@ -41,7 +41,7 @@ class configuration_t { private: - can_bus_t can_bus_manager_ = can_bus_t(afb_daemon_rootdir_open_locale(binder_interface->daemon, "can_buses.json", O_RDONLY, NULL)); + can_bus_t can_bus_manager_ = can_bus_t(afb_daemon_rootdir_open_locale(binder_interface->daemon, "etc/can_buses.json", O_RDONLY, NULL)); diagnostic_manager_t diagnostic_manager_; uint8_t active_message_set_ = 0; std::vector<std::string> signals_prefix_; |