diff options
author | Pat Erley <perley@cyngn.com> | 2016-01-28 16:17:54 -0800 |
---|---|---|
committer | Pat Erley <perley@cyngn.com> | 2016-01-28 16:19:33 -0800 |
commit | a6a4c8ae1775a9438df7612eca9ea935fc57c070 (patch) | |
tree | 6da12c32c2773e7e641e01c68f4d1d157a23af60 | |
parent | c7610f2aee2291584d92cad2184a34f4402ea000 (diff) | |
download | bootable_recovery-a6a4c8ae1775a9438df7612eca9ea935fc57c070.zip bootable_recovery-a6a4c8ae1775a9438df7612eca9ea935fc57c070.tar.gz bootable_recovery-a6a4c8ae1775a9438df7612eca9ea935fc57c070.tar.bz2 |
recovery: Fix mount_for_wipe
During a rebase, a line was dropped that shouldn't have been.
CYNGNOS-1747
Change-Id: I9c9729ba11599baad267d3769685124b422033f8
-rw-r--r-- | roots.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -268,6 +268,7 @@ int remount_for_wipe(const char* path) { // Add SELinux mount override asprintf(&new_fs_options, "%s%s", v->fs_options, se_context); + v->fs_options = new_fs_options; ensure_path_unmounted(path); ret = ensure_path_mounted(path); |