diff options
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sha1_file.c b/sha1_file.c index 5695c962fe..e27affb288 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -695,6 +695,9 @@ static int packed_object_info(struct pack_entry *entry, case 'B': strcpy(type, "blob"); break; + case 'G': + strcpy(type, "tag"); + break; default: die("corrupted pack file"); } @@ -807,6 +810,9 @@ static void *unpack_entry(struct pack_entry *entry, case 'B': strcpy(type, "blob"); break; + case 'G': + strcpy(type, "tag"); + break; default: die("corrupted pack file"); } |