mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-30 14:16:40 +00:00
Merge pull request #1862 from MilhouseVH/busybox_dd_fix
busybox: revert dd fsync change which makes no sense
This commit is contained in:
commit
2800b210d7
@ -0,0 +1,34 @@
|
||||
From 0a61b6174d86fd0300be7cd4fa0b47ff12735958 Mon Sep 17 00:00:00 2001
|
||||
From: MilhouseVH <milhouseVH.github@nmacleod.com>
|
||||
Date: Tue, 8 Aug 2017 22:25:03 +0100
|
||||
Subject: [PATCH] Revert "dd: call fsync() only once before exiting if
|
||||
conv=fsync is specified"
|
||||
|
||||
This reverts commit dba0dc1999bb1e8bfe64607e2a9385cda361fcb7.
|
||||
---
|
||||
coreutils/dd.c | 8 ++++----
|
||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/coreutils/dd.c b/coreutils/dd.c
|
||||
index d302f35..bf0c4ab 100644
|
||||
--- a/coreutils/dd.c
|
||||
+++ b/coreutils/dd.c
|
||||
@@ -531,11 +531,11 @@ int dd_main(int argc UNUSED_PARAM, char **argv)
|
||||
if (write_and_stats(ibuf, n, obs, outfile))
|
||||
goto out_status;
|
||||
}
|
||||
- }
|
||||
|
||||
- if (G.flags & FLAG_FSYNC) {
|
||||
- if (fsync(ofd) < 0)
|
||||
- goto die_outfile;
|
||||
+ if (G.flags & FLAG_FSYNC) {
|
||||
+ if (fsync(ofd) < 0)
|
||||
+ goto die_outfile;
|
||||
+ }
|
||||
}
|
||||
|
||||
if (ENABLE_FEATURE_DD_IBS_OBS && oc) {
|
||||
--
|
||||
2.7.4
|
||||
|
Loading…
x
Reference in New Issue
Block a user