diff options
author | Stefan Beller <sbeller@google.com> | 2018-03-23 18:21:16 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-26 10:05:55 -0700 |
commit | a68377b5dedbe7e5230901577eac9b9a00cb26b4 (patch) | |
tree | 59f00895162ba14b68cf64b9c35a3771905b9dcb /object-store.h | |
parent | e977fc7469d0524b31eea22431b7c6ef6616741f (diff) | |
download | git-a68377b5dedbe7e5230901577eac9b9a00cb26b4.tar.gz |
sha1_file: allow sha1_file_name to handle arbitrary repositories
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'object-store.h')
-rw-r--r-- | object-store.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/object-store.h b/object-store.h index 03671745f4..d9cc875153 100644 --- a/object-store.h +++ b/object-store.h @@ -125,8 +125,7 @@ void raw_object_store_clear(struct raw_object_store *o); * Put in `buf` the name of the file in the local object database that * would be used to store a loose object with the specified sha1. */ -#define sha1_file_name(r, b, s) sha1_file_name_##r(b, s) -void sha1_file_name_the_repository(struct strbuf *buf, const unsigned char *sha1); +void sha1_file_name(struct repository *r, struct strbuf *buf, 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); |