Remove dead code from fs_mgr
Test: Compiles Change-Id: I644cfe58fdf87fbb88a85953f1450efb8b99baab
This commit is contained in:
parent
4bc9e2517b
commit
997e9bbc18
1 changed files with 2 additions and 3 deletions
|
@ -102,9 +102,8 @@ static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device, bo
|
||||||
PLOG(ERROR) << "Failed to setexeccon";
|
PLOG(ERROR) << "Failed to setexeccon";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
auto mount_rc = fs_mgr_do_mount(&fstab_default, const_cast<char*>(mount_point),
|
auto mount_rc = fs_mgr_do_mount(&fstab_default, mount_point, blk_device,
|
||||||
const_cast<char*>(blk_device), nullptr,
|
android::vold::cp_needsCheckpoint(), needs_encrypt);
|
||||||
android::vold::cp_needsCheckpoint(), true, needs_encrypt);
|
|
||||||
if (setexeccon(nullptr)) {
|
if (setexeccon(nullptr)) {
|
||||||
PLOG(ERROR) << "Failed to clear setexeccon";
|
PLOG(ERROR) << "Failed to clear setexeccon";
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue