Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1298 from doanac/lite-fix
Browse files Browse the repository at this point in the history
aktualizr-lite: Fix incorrect storing of ecu hwid
  • Loading branch information
pattivacek committed Aug 15, 2019
2 parents 0c1dbf8 + 8e24479 commit b12990e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aktualizr_lite/main.cc
Expand Up @@ -56,7 +56,7 @@ static std::shared_ptr<SotaUptaneClient> liteClient(Config &config, std::shared_
boost::uuids::uuid tmp = boost::uuids::random_generator()();
serial = boost::uuids::to_string(tmp);
}
ecu_serials.emplace_back(Uptane::EcuSerial(serial), Uptane::HardwareIdentifier(serial));
ecu_serials.emplace_back(Uptane::EcuSerial(serial), Uptane::HardwareIdentifier(hwid));
storage->storeEcuSerials(ecu_serials);
}

Expand Down

0 comments on commit b12990e

Please sign in to comment.