diff options
author | Tao Bao <tbao@google.com> | 2017-10-02 23:06:11 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-10-02 23:06:11 +0200 |
commit | 8b8c7eb442f45eae461f35ecd04493bf25208e26 (patch) | |
tree | b20f6c02ba836a898aeecc537a4abab5d3db6994 /install.cpp | |
parent | Merge "Use -Werror in bootable/recovery" (diff) | |
parent | Merge "roots: Fix an issue with volume_for_path()." (diff) | |
download | android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.gz android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.bz2 android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.lz android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.xz android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.zst android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.zip |
Diffstat (limited to 'install.cpp')
-rw-r--r-- | install.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.cpp b/install.cpp index 507161c2e..74d1a68b3 100644 --- a/install.cpp +++ b/install.cpp @@ -653,7 +653,7 @@ int install_package(const std::string& path, bool* wipe_cache, const std::string std::chrono::duration<double> duration = std::chrono::system_clock::now() - start; int time_total = static_cast<int>(duration.count()); - bool has_cache = volume_for_path("/cache") != nullptr; + bool has_cache = volume_for_mount_point("/cache") != nullptr; // Skip logging the uncrypt_status on devices without /cache. if (has_cache) { static constexpr const char* UNCRYPT_STATUS = "/cache/recovery/uncrypt_status"; |