Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
Merge "Fix fs_mgr to properly invoke e2fsck on encrypted devices" int…
Browse files Browse the repository at this point in the history
…o jb-mr1.1-dev
  • Loading branch information
Ken Sumrall authored and Android (Google) Code Review committed Nov 12, 2012
2 parents ba70ed9 + d42d327 commit b20fa76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs_mgr/fs_mgr.c
Expand Up @@ -523,11 +523,11 @@ int fs_mgr_do_mount(char *fstab_file, char *n_name, char *n_blk_dev, char *tmp_m
/* We found our match */ /* We found our match */
/* First check the filesystem if requested */ /* First check the filesystem if requested */
if (fstab[i].fs_mgr_flags & MF_WAIT) { if (fstab[i].fs_mgr_flags & MF_WAIT) {
wait_for_file(fstab[i].blk_dev, WAIT_TIMEOUT); wait_for_file(n_blk_dev, WAIT_TIMEOUT);
} }


if (fstab[i].fs_mgr_flags & MF_CHECK) { if (fstab[i].fs_mgr_flags & MF_CHECK) {
check_fs(fstab[i].blk_dev, fstab[i].type, fstab[i].mnt_point); check_fs(n_blk_dev, fstab[i].type, fstab[i].mnt_point);
} }


/* Now mount it where requested */ /* Now mount it where requested */
Expand Down

0 comments on commit b20fa76

Please sign in to comment.