summaryrefslogtreecommitdiffstats
path: root/install.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-10-02 23:14:10 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-10-02 23:14:10 +0200
commitff1f8d207cb973e8220a20da71d62089df92f10d (patch)
treea7cbe15d9a7188f6ce39b8689416ded7fa6c9869 /install.cpp
parentMerge "Use -Werror in bootable/recovery" am: 88aa128e22 am: b5437e3e1b am: e4be0899b2 (diff)
parentMerge "roots: Fix an issue with volume_for_path()." am: dd7a4b5264 am: 8b8c7eb442 (diff)
downloadandroid_bootable_recovery-ff1f8d207cb973e8220a20da71d62089df92f10d.tar
android_bootable_recovery-ff1f8d207cb973e8220a20da71d62089df92f10d.tar.gz
android_bootable_recovery-ff1f8d207cb973e8220a20da71d62089df92f10d.tar.bz2
android_bootable_recovery-ff1f8d207cb973e8220a20da71d62089df92f10d.tar.lz
android_bootable_recovery-ff1f8d207cb973e8220a20da71d62089df92f10d.tar.xz
android_bootable_recovery-ff1f8d207cb973e8220a20da71d62089df92f10d.tar.zst
android_bootable_recovery-ff1f8d207cb973e8220a20da71d62089df92f10d.zip
Diffstat (limited to 'install.cpp')
-rw-r--r--install.cpp2
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";