sha1_file: allow map_sha1_file to handle arbitrary repositories
[gitweb.git] / sha1_file.c
index 1d5d23dfe2e99b2eb34f5f57786582096472123d..9addad68877bd27f435fc2dba4399bc544e19db6 100644 (file)
@@ -957,9 +957,10 @@ static void *map_sha1_file_1(struct repository *r, const char *path,
        return map;
 }
 
-void *map_sha1_file_the_repository(const unsigned char *sha1, unsigned long *size)
+void *map_sha1_file(struct repository *r,
+                   const unsigned char *sha1, unsigned long *size)
 {
-       return map_sha1_file_1(the_repository, NULL, sha1, size);
+       return map_sha1_file_1(r, NULL, sha1, size);
 }
 
 static int unpack_sha1_short_header(git_zstream *stream,