summaryrefslogtreecommitdiffstats
path: root/pack-bitmap.c
diff options
context:
space:
mode:
authorLars Schneider <larsxschneider@gmail.com>2016-10-24 20:02:59 +0200
committerJunio C Hamano <gitster@pobox.com>2016-10-25 10:59:13 -0700
commita5436b57941d99302a4cf68373da6288c11f0340 (patch)
tree403364824786f8b322af37251027474b52eaa773 /pack-bitmap.c
parentdec040192fde87fb3249a3d53f802decd84fa7b7 (diff)
downloadgit-a5436b57941d99302a4cf68373da6288c11f0340.tar.gz
git-a5436b57941d99302a4cf68373da6288c11f0340.tar.xz
sha1_file: rename git_open_noatime() to git_open()
This function is meant to be used when reading from files in the object store, and the original objective was to avoid smudging atime of loose object files too often, hence its name. Because we'll be extending its role in the next commit to also arrange the file descriptors they return auto-closed in the child processes, rename it to lose "noatime" part that is too specific. Signed-off-by: Lars Schneider <larsxschneider@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pack-bitmap.c')
-rw-r--r--pack-bitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-bitmap.c b/pack-bitmap.c
index b949e5171..39bcc1684 100644
--- a/pack-bitmap.c
+++ b/pack-bitmap.c
@@ -266,7 +266,7 @@ static int open_pack_bitmap_1(struct packed_git *packfile)
return -1;
idx_name = pack_bitmap_filename(packfile);
- fd = git_open_noatime(idx_name);
+ fd = git_open(idx_name);
free(idx_name);
if (fd < 0)