diff options
author | Jaegeuk Kim <jaegeuk@motorola.com> | 2015-11-04 20:43:58 +0100 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@motorola.com> | 2015-11-04 20:43:58 +0100 |
commit | cc4e3c6002efc42bce314c98909ecfc2d2f2ab02 (patch) | |
tree | be608dde301d60b99f65325f914fd837549f8de0 /uncrypt | |
parent | Merge "recovery: Depend on mkfs.f2fs only if needed." (diff) | |
download | android_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.cpp | 2 |
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)); |