summaryrefslogtreecommitdiff
path: root/pack-revindex.c
diff options
context:
space:
mode:
Diffstat (limited to 'pack-revindex.c')
-rw-r--r--pack-revindex.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/pack-revindex.c b/pack-revindex.c
index 0ca3b54..16baafb 100644
--- a/pack-revindex.c
+++ b/pack-revindex.c
@@ -189,21 +189,6 @@ int find_revindex_position(struct packed_git *p, off_t ofs)
return -1;
}
-struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs)
-{
- int pos;
-
- if (load_pack_revindex(p))
- return NULL;
-
- pos = find_revindex_position(p, ofs);
-
- if (pos < 0)
- return NULL;
-
- return p->revindex + pos;
-}
-
int offset_to_pack_pos(struct packed_git *p, off_t ofs, uint32_t *pos)
{
int ret;