summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPat Erley <perley@cyngn.com>2016-01-28 16:17:54 -0800
committerPat Erley <perley@cyngn.com>2016-01-28 16:19:33 -0800
commita6a4c8ae1775a9438df7612eca9ea935fc57c070 (patch)
tree6da12c32c2773e7e641e01c68f4d1d157a23af60
parentc7610f2aee2291584d92cad2184a34f4402ea000 (diff)
downloadbootable_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.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/roots.cpp b/roots.cpp
index 4586c42..4bdf192 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -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);