diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-11-27 19:23:27 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-11-27 19:23:27 -0800 |
commit | 539eec48f0a101b45c5f150a2bbc067fd85bc96d (patch) | |
tree | bd7134cfb57be91b518be6cbaf21436c664cc993 /builtin-fast-export.c | |
parent | sha1_file.c: resolve confusion EACCES vs EPERM (diff) | |
parent | fast-export: use an unsorted string list for extra_refs (diff) | |
download | tgif-539eec48f0a101b45c5f150a2bbc067fd85bc96d.tar.xz |
Merge branch 'mv/fast-export' into maint
* mv/fast-export:
fast-export: use an unsorted string list for extra_refs
Add new testcase to show fast-export does not always exports all tags
Diffstat (limited to 'builtin-fast-export.c')
-rw-r--r-- | builtin-fast-export.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin-fast-export.c b/builtin-fast-export.c index 7c93eb878d..7d5d57ad75 100644 --- a/builtin-fast-export.c +++ b/builtin-fast-export.c @@ -354,7 +354,7 @@ static void get_tags_and_duplicates(struct object_array *pending, case OBJ_TAG: tag = (struct tag *)e->item; while (tag && tag->object.type == OBJ_TAG) { - string_list_insert(full_name, extra_refs)->util = tag; + string_list_append(full_name, extra_refs)->util = tag; tag = (struct tag *)tag->tagged; } if (!tag) @@ -374,7 +374,7 @@ static void get_tags_and_duplicates(struct object_array *pending, } if (commit->util) /* more than one name for the same object */ - string_list_insert(full_name, extra_refs)->util = commit; + string_list_append(full_name, extra_refs)->util = commit; else commit->util = full_name; } |