rename "alternate_object_database" to "object_directory"
In preparation for unifying the handling of alt odb's and the normal repo object directory, let's use a more neutral name. This patch is purely mechanical, swapping the type name, and converting any variables named "alt" to "odb". There should be no functional change, but it will reduce the noise in subsequent diffs. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
b2ac148fae
commit
263db403fa
10
object.c
10
object.c
@ -482,17 +482,17 @@ struct raw_object_store *raw_object_store_new(void)
|
||||
return o;
|
||||
}
|
||||
|
||||
static void free_alt_odb(struct alternate_object_database *alt)
|
||||
static void free_alt_odb(struct object_directory *odb)
|
||||
{
|
||||
strbuf_release(&alt->scratch);
|
||||
oid_array_clear(&alt->loose_objects_cache);
|
||||
free(alt);
|
||||
strbuf_release(&odb->scratch);
|
||||
oid_array_clear(&odb->loose_objects_cache);
|
||||
free(odb);
|
||||
}
|
||||
|
||||
static void free_alt_odbs(struct raw_object_store *o)
|
||||
{
|
||||
while (o->alt_odb_list) {
|
||||
struct alternate_object_database *next;
|
||||
struct object_directory *next;
|
||||
|
||||
next = o->alt_odb_list->next;
|
||||
free_alt_odb(o->alt_odb_list);
|
||||
|
Reference in New Issue
Block a user