Merge "Revert "Small fix: Use const value on IsHashreeDisabled"" into main

This commit is contained in:
Oleg Petšjonkin 2023-12-22 14:36:57 +00:00 committed by Gerrit Code Review
commit e3bfd32ae7

View file

@ -732,7 +732,7 @@ bool FirstStageMountVBootV2::GetDmVerityDevices(std::set<std::string>* devices)
return true;
}
bool IsHashtreeDisabled(const AvbHandle& vbmeta, const std::string& mount_point) {
bool IsHashtreeDisabled(const AvbHandle& vbmeta, std::string mount_point) {
if (vbmeta.status() == AvbHandleStatus::kHashtreeDisabled ||
vbmeta.status() == AvbHandleStatus::kVerificationDisabled) {
LOG(ERROR) << "Top-level vbmeta is disabled, skip Hashtree setup for " << mount_point;