Signed-off-by: Stefan Beller <sbeller@xxxxxxxxxx> Signed-off-by: Jonathan Nieder <jrnieder@xxxxxxxxx> --- object-store.h | 3 +-- sha1_file.c | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/object-store.h b/object-store.h index 0a4561f476..b4756444bb 100644 --- a/object-store.h +++ b/object-store.h @@ -67,8 +67,7 @@ struct packed_git { * The return value is a pointer to a statically allocated buffer that * is overwritten each time the function is called. */ -#define sha1_file_name(r, s) sha1_file_name_##r(s) -const char *sha1_file_name_the_repository(const unsigned char *sha1); +const char *sha1_file_name(struct repository *r, const unsigned char *sha1); #define map_sha1_file(r, s, sz) map_sha1_file_##r(s, sz) void *map_sha1_file_the_repository(const unsigned char *sha1, unsigned long *size); diff --git a/sha1_file.c b/sha1_file.c index d0bc09a089..fddada5756 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -323,12 +323,12 @@ static void fill_sha1_path(struct strbuf *buf, const unsigned char *sha1) } } -const char *sha1_file_name_the_repository(const unsigned char *sha1) +const char *sha1_file_name(struct repository *r, const unsigned char *sha1) { static struct strbuf buf = STRBUF_INIT; strbuf_reset(&buf); - strbuf_addf(&buf, "%s/", get_object_directory()); + strbuf_addf(&buf, "%s/", r->objects.objectdir); fill_sha1_path(&buf, sha1); return buf.buf; -- 2.16.1.73.ga2c3e9663f.dirty