Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-10-05 08:37:15 +0400
committerJunio C Hamano <junkio@cox.net>2006-10-05 08:37:15 +0400
commit422b4a0e03658d0933a7abc149f175735ea9c4b5 (patch)
treeb670900cd46d5198d6b1246950c2312d02f8f115 /builtin-pack-refs.c
parent03a182107fdb36170a72b8a3d94de2b52e3f6668 (diff)
pack-refs: call fflush before fsync.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-pack-refs.c')
-rw-r--r--builtin-pack-refs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin-pack-refs.c b/builtin-pack-refs.c
index ede47434e3..23d0d0720e 100644
--- a/builtin-pack-refs.c
+++ b/builtin-pack-refs.c
@@ -89,6 +89,7 @@ int cmd_pack_refs(int argc, const char **argv, const char *prefix)
die("unable to create ref-pack file structure (%s)",
strerror(errno));
for_each_ref(handle_one_ref, &cbdata);
+ fflush(cbdata.refs_file);
fsync(fd);
fclose(cbdata.refs_file);
if (commit_lock_file(&packed) < 0)