summaryrefslogtreecommitdiffstats
path: root/uncrypt
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@motorola.com>2015-11-04 20:43:58 +0100
committerJaegeuk Kim <jaegeuk@motorola.com>2015-11-04 20:43:58 +0100
commitcc4e3c6002efc42bce314c98909ecfc2d2f2ab02 (patch)
treebe608dde301d60b99f65325f914fd837549f8de0 /uncrypt
parentMerge "recovery: Depend on mkfs.f2fs only if needed." (diff)
downloadandroid_bootable_recovery-cc4e3c6002efc42bce314c98909ecfc2d2f2ab02.tar
android_bootable_recovery-cc4e3c6002efc42bce314c98909ecfc2d2f2ab02.tar.gz
android_bootable_recovery-cc4e3c6002efc42bce314c98909ecfc2d2f2ab02.tar.bz2
android_bootable_recovery-cc4e3c6002efc42bce314c98909ecfc2d2f2ab02.tar.lz
android_bootable_recovery-cc4e3c6002efc42bce314c98909ecfc2d2f2ab02.tar.xz
android_bootable_recovery-cc4e3c6002efc42bce314c98909ecfc2d2f2ab02.tar.zst
android_bootable_recovery-cc4e3c6002efc42bce314c98909ecfc2d2f2ab02.zip
Diffstat (limited to 'uncrypt')
-rw-r--r--uncrypt/uncrypt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp
index aef480035..6db438258 100644
--- a/uncrypt/uncrypt.cpp
+++ b/uncrypt/uncrypt.cpp
@@ -234,7 +234,7 @@ static int produce_block_map(const char* path, const char* map_file, const char*
int wfd = -1;
unique_fd wfd_holder(wfd);
if (encrypted) {
- wfd = open(blk_dev, O_WRONLY | O_SYNC);
+ wfd = open(blk_dev, O_WRONLY);
wfd_holder = unique_fd(wfd);
if (wfd == -1) {
ALOGE("failed to open fd for writing: %s\n", strerror(errno));