summaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorHeiko Voigt <hvoigt@hvoigt.net>2012-05-14 16:24:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-05-14 18:56:42 (GMT)
commit5e73633dbf8a62190611f6eb438a1a2eaaffa919 (patch)
tree3b4d75ea58902847c8313ef9abdb5c64fea8d09a /sha1_file.c
parentd0f1ea6003d97e63110fa7d50bb07f546a909b6e (diff)
downloadgit-5e73633dbf8a62190611f6eb438a1a2eaaffa919.zip
git-5e73633dbf8a62190611f6eb438a1a2eaaffa919.tar.gz
git-5e73633dbf8a62190611f6eb438a1a2eaaffa919.tar.bz2
teach add_submodule_odb() to look for alternates
Since we allow to link other object databases when loading a submodules database we should also load possible alternates. Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sha1_file.c b/sha1_file.c
index 4f06a0e..f615fc7 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -228,7 +228,6 @@ char *sha1_pack_index_name(const unsigned char *sha1)
struct alternate_object_database *alt_odb_list;
static struct alternate_object_database **alt_odb_tail;
-static void read_info_alternates(const char * alternates, int depth);
static int git_open_noatime(const char *name);
/*
@@ -353,7 +352,7 @@ static void link_alt_odb_entries(const char *alt, const char *ep, int sep,
}
}
-static void read_info_alternates(const char * relative_base, int depth)
+void read_info_alternates(const char * relative_base, int depth)
{
char *map;
size_t mapsz;