Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 157854d5 authored by Tom Cherry's avatar Tom Cherry Committed by android-build-merger
Browse files

Merge "fs_mgr: fix typo"

am: e610ad61

Change-Id: I84653ab374f0383e3647b8857ba2d6ac83fcd906
parents 23062e44 e610ad61
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -763,7 +763,7 @@ static bool needs_block_encryption(const struct fstab_rec* rec)
    if (rec->fs_mgr_flags & MF_FORCECRYPT) return true;
    if (rec->fs_mgr_flags & MF_CRYPT) {
        // Check for existence of convert_fde breadcrumb file.
        auto convert_fde_name = rec->mount_point + "%s/misc/vold/convert_fde"s;
        auto convert_fde_name = rec->mount_point + "/misc/vold/convert_fde"s;
        if (access(convert_fde_name.c_str(), F_OK) == 0) return true;
    }
    if (rec->fs_mgr_flags & MF_FORCEFDEORFBE) {