зеркало из https://github.com/microsoft/git.git
entry_resolves_to_object(): rename function from ref_resolves_to_object()
Free up the old name for a more general purpose. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
2eed2780f0
Коммит
ffeef64231
|
@ -517,7 +517,7 @@ static void sort_ref_dir(struct ref_dir *dir)
|
|||
* an object in the database. Emit a warning if the referred-to
|
||||
* object does not exist.
|
||||
*/
|
||||
static int ref_resolves_to_object(struct ref_entry *entry)
|
||||
static int entry_resolves_to_object(struct ref_entry *entry)
|
||||
{
|
||||
if (entry->flag & REF_ISBROKEN)
|
||||
return 0;
|
||||
|
@ -563,7 +563,7 @@ static int do_one_ref(struct ref_entry *entry, void *cb_data)
|
|||
return 0;
|
||||
|
||||
if (!(data->flags & DO_FOR_EACH_INCLUDE_BROKEN) &&
|
||||
!ref_resolves_to_object(entry))
|
||||
!entry_resolves_to_object(entry))
|
||||
return 0;
|
||||
|
||||
/* Store the old value, in case this is a recursive call: */
|
||||
|
@ -2228,7 +2228,7 @@ static int pack_if_possible_fn(struct ref_entry *entry, void *cb_data)
|
|||
return 0;
|
||||
|
||||
/* Do not pack symbolic or broken refs: */
|
||||
if ((entry->flag & REF_ISSYMREF) || !ref_resolves_to_object(entry))
|
||||
if ((entry->flag & REF_ISSYMREF) || !entry_resolves_to_object(entry))
|
||||
return 0;
|
||||
|
||||
/* Add a packed ref cache entry equivalent to the loose entry. */
|
||||
|
|
Загрузка…
Ссылка в новой задаче