From 422b4a0e03658d0933a7abc149f175735ea9c4b5 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Wed, 4 Oct 2006 21:37:15 -0700 Subject: pack-refs: call fflush before fsync. Signed-off-by: Junio C Hamano --- builtin-pack-refs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin-pack-refs.c b/builtin-pack-refs.c index ede47434e..23d0d0720 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) -- cgit v1.2.1