diff options
| author | Edward Thomson <ethomson@github.com> | 2016-12-13 10:35:05 -0500 |
|---|---|---|
| committer | Edward Thomson <ethomson@github.com> | 2017-02-28 13:27:49 +0000 |
| commit | fc27fe213c8462c8413486b8c2bfb82b25b3e7e6 (patch) | |
| tree | a79105da96aab01e79661dfd88e14d2978156b1c /include | |
| parent | fc77891f6308ee4ca837cdf558969c5c457b1392 (diff) | |
| download | libgit2-fc27fe213c8462c8413486b8c2bfb82b25b3e7e6.tar.gz | |
odb_loose: actually honor the fsync option
We've had an fsync option for a long time, but it was "ignored".
Stop ignoring it.
Diffstat (limited to 'include')
| -rw-r--r-- | include/git2/odb_backend.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/odb_backend.h b/include/git2/odb_backend.h index b17cfd8ba..9199538ce 100644 --- a/include/git2/odb_backend.h +++ b/include/git2/odb_backend.h @@ -39,7 +39,7 @@ GIT_EXTERN(int) git_odb_backend_pack(git_odb_backend **out, const char *objects_ * @param out location to store the odb backend pointer * @param objects_dir the Git repository's objects directory * @param compression_level zlib compression level to use - * @param do_fsync whether to do an fsync() after writing (currently ignored) + * @param do_fsync whether to do an fsync() after writing * @param dir_mode permissions to use creating a directory or 0 for defaults * @param file_mode permissions to use creating a file or 0 for defaults * |
