OSDN Git Service

git-pack-objects: mark the delta packing with a 'D'.
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 25 Jun 2005 22:58:42 +0000 (15:58 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 25 Jun 2005 22:58:42 +0000 (15:58 -0700)
When writing a delta, we take the real type from the object we're
doing the delta against, and just write a 'D' as the type of the
current object.

pack-objects.c

index 9a468bd..8de7bd0 100644 (file)
@@ -114,6 +114,7 @@ static unsigned long write_object(FILE *f, struct object_entry *entry)
        memcpy(header+1, &datalen, 4);
        hdrlen = 5;
        if (entry->delta) {
+               header[0] = 'D';
                memcpy(header+1, entry->delta, 20);
                buf = delta_against(buf, size, entry);
                size = entry->delta_size;