Browse Source

Use blob_, commit_, tag_, and tree_type throughout.

This replaces occurences of "blob", "commit", "tag", and "tree",
where they're really used as type specifiers, which we already
have defined global constants for.

Signed-off-by: Peter Eriksen <s022018@student.dtu.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Peter Eriksen 19 years ago committed by Junio C Hamano
parent
commit
8e44025925
  1. 5
      apply.c
  2. 2
      blame.c
  3. 6
      cat-file.c
  4. 3
      combine-diff.c
  5. 8
      commit-tree.c
  6. 15
      convert-objects.c
  7. 2
      diff-tree.c
  8. 3
      entry.c
  9. 3
      hash-object.c
  10. 12
      index-pack.c
  11. 4
      ls-tree.c
  12. 3
      mktag.c
  13. 3
      mktree.c
  14. 8
      object.c
  15. 16
      pack-objects.c
  16. 2
      revision.c
  17. 40
      sha1_file.c
  18. 2
      tar-tree.c
  19. 7
      tree-diff.c
  20. 3
      tree-walk.c
  21. 3
      unpack-file.c
  22. 12
      unpack-objects.c
  23. 3
      write-tree.c

5
apply.c

@ -9,6 +9,7 @@ @@ -9,6 +9,7 @@
#include <fnmatch.h>
#include "cache.h"
#include "quote.h"
#include "blob.h"

// --check turns on checking that the working tree matches the
// files that are being modified, but doesn't apply the patch
@ -1296,7 +1297,7 @@ static int apply_fragments(struct buffer_desc *desc, struct patch *patch) @@ -1296,7 +1297,7 @@ static int apply_fragments(struct buffer_desc *desc, struct patch *patch)
* applies to.
*/
write_sha1_file_prepare(desc->buffer, desc->size,
"blob", sha1, hdr, &hdrlen);
blob_type, sha1, hdr, &hdrlen);
if (strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))
return error("the patch applies to '%s' (%s), "
"which does not match the "
@ -1659,7 +1660,7 @@ static void add_index_file(const char *path, unsigned mode, void *buf, unsigned @@ -1659,7 +1660,7 @@ static void add_index_file(const char *path, unsigned mode, void *buf, unsigned
if (lstat(path, &st) < 0)
die("unable to stat newly created file %s", path);
fill_stat_cache_info(ce, &st);
if (write_sha1_file(buf, size, "blob", ce->sha1) < 0)
if (write_sha1_file(buf, size, blob_type, ce->sha1) < 0)
die("unable to create backing store for newly created file %s", path);
if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0)
die("unable to add cache entry for %s", path);

2
blame.c

@ -229,7 +229,7 @@ static void get_blob(struct commit *commit) @@ -229,7 +229,7 @@ static void get_blob(struct commit *commit)

info->buf = read_sha1_file(info->sha1, type, &info->size);

assert(!strcmp(type, "blob"));
assert(!strcmp(type, blob_type));
}

/* For debugging only */

6
cat-file.c

@ -5,6 +5,8 @@ @@ -5,6 +5,8 @@
*/
#include "cache.h"
#include "exec_cmd.h"
#include "tag.h"
#include "tree.h"

static void flush_buffer(const char *buf, unsigned long size)
{
@ -136,13 +138,13 @@ int main(int argc, char **argv) @@ -136,13 +138,13 @@ int main(int argc, char **argv)
die("Not a valid object name %s", argv[2]);

/* custom pretty-print here */
if (!strcmp(type, "tree"))
if (!strcmp(type, tree_type))
return execl_git_cmd("ls-tree", argv[2], NULL);

buf = read_sha1_file(sha1, type, &size);
if (!buf)
die("Cannot read object %s", argv[2]);
if (!strcmp(type, "tag"))
if (!strcmp(type, tag_type))
return pprint_tag(sha1, buf, size);

/* otherwise just spit out the data */

3
combine-diff.c

@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
#include "cache.h"
#include "commit.h"
#include "blob.h"
#include "diff.h"
#include "diffcore.h"
#include "quote.h"
@ -104,7 +105,7 @@ static char *grab_blob(const unsigned char *sha1, unsigned long *size) @@ -104,7 +105,7 @@ static char *grab_blob(const unsigned char *sha1, unsigned long *size)
return xcalloc(1, 1);
}
blob = read_sha1_file(sha1, type, size);
if (strcmp(type, "blob"))
if (strcmp(type, blob_type))
die("object '%s' is not a blob!", sha1_to_hex(sha1));
return blob;
}

8
commit-tree.c

@ -4,6 +4,8 @@ @@ -4,6 +4,8 @@
* Copyright (C) Linus Torvalds, 2005
*/
#include "cache.h"
#include "commit.h"
#include "tree.h"

#define BLOCKING (1ul << 14)

@ -93,13 +95,13 @@ int main(int argc, char **argv) @@ -93,13 +95,13 @@ int main(int argc, char **argv)
if (argc < 2 || get_sha1_hex(argv[1], tree_sha1) < 0)
usage(commit_tree_usage);

check_valid(tree_sha1, "tree");
check_valid(tree_sha1, tree_type);
for (i = 2; i < argc; i += 2) {
char *a, *b;
a = argv[i]; b = argv[i+1];
if (!b || strcmp(a, "-p") || get_sha1(b, parent_sha1[parents]))
usage(commit_tree_usage);
check_valid(parent_sha1[parents], "commit");
check_valid(parent_sha1[parents], commit_type);
if (new_parent(parents))
parents++;
}
@ -125,7 +127,7 @@ int main(int argc, char **argv) @@ -125,7 +127,7 @@ int main(int argc, char **argv)
while (fgets(comment, sizeof(comment), stdin) != NULL)
add_buffer(&buffer, &size, "%s", comment);

if (!write_sha1_file(buffer, size, "commit", commit_sha1)) {
if (!write_sha1_file(buffer, size, commit_type, commit_sha1)) {
printf("%s\n", sha1_to_hex(commit_sha1));
return 0;
}

15
convert-objects.c

@ -2,6 +2,9 @@ @@ -2,6 +2,9 @@
#define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
#include <time.h>
#include "cache.h"
#include "blob.h"
#include "commit.h"
#include "tree.h"

struct entry {
unsigned char old_sha1[20];
@ -122,7 +125,7 @@ static int write_subdirectory(void *buffer, unsigned long size, const char *base @@ -122,7 +125,7 @@ static int write_subdirectory(void *buffer, unsigned long size, const char *base
buffer += len;
}

write_sha1_file(new, newlen, "tree", result_sha1);
write_sha1_file(new, newlen, tree_type, result_sha1);
free(new);
return used;
}
@ -262,7 +265,7 @@ static void convert_date(void *buffer, unsigned long size, unsigned char *result @@ -262,7 +265,7 @@ static void convert_date(void *buffer, unsigned long size, unsigned char *result
memcpy(new + newlen, buffer, size);
newlen += size;

write_sha1_file(new, newlen, "commit", result_sha1);
write_sha1_file(new, newlen, commit_type, result_sha1);
free(new);
}

@ -298,11 +301,11 @@ static struct entry * convert_entry(unsigned char *sha1) @@ -298,11 +301,11 @@ static struct entry * convert_entry(unsigned char *sha1)
buffer = xmalloc(size);
memcpy(buffer, data, size);

if (!strcmp(type, "blob")) {
write_sha1_file(buffer, size, "blob", entry->new_sha1);
} else if (!strcmp(type, "tree"))
if (!strcmp(type, blob_type)) {
write_sha1_file(buffer, size, blob_type, entry->new_sha1);
} else if (!strcmp(type, tree_type))
convert_tree(buffer, size, entry->new_sha1);
else if (!strcmp(type, "commit"))
else if (!strcmp(type, commit_type))
convert_commit(buffer, size, entry->new_sha1);
else
die("unknown object type '%s' in %s", type, sha1_to_hex(sha1));

2
diff-tree.c

@ -52,7 +52,7 @@ static int diff_root_tree(const unsigned char *new, const char *base) @@ -52,7 +52,7 @@ static int diff_root_tree(const unsigned char *new, const char *base)
void *tree;
struct tree_desc empty, real;

tree = read_object_with_reference(new, "tree", &real.size, NULL);
tree = read_object_with_reference(new, tree_type, &real.size, NULL);
if (!tree)
die("unable to read root tree (%s)", sha1_to_hex(new));
real.buf = tree;

3
entry.c

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
#include <sys/types.h>
#include <dirent.h>
#include "cache.h"
#include "blob.h"

static void create_directories(const char *path, struct checkout *state)
{
@ -72,7 +73,7 @@ static int write_entry(struct cache_entry *ce, char *path, struct checkout *stat @@ -72,7 +73,7 @@ static int write_entry(struct cache_entry *ce, char *path, struct checkout *stat
char type[20];

new = read_sha1_file(ce->sha1, type, &size);
if (!new || strcmp(type, "blob")) {
if (!new || strcmp(type, blob_type)) {
if (new)
free(new);
return error("git-checkout-index: unable to read sha1 file of %s (%s)",

3
hash-object.c

@ -5,6 +5,7 @@ @@ -5,6 +5,7 @@
* Copyright (C) Junio C Hamano, 2005
*/
#include "cache.h"
#include "blob.h"

static void hash_object(const char *path, const char *type, int write_object)
{
@ -35,7 +36,7 @@ static const char hash_object_usage[] = @@ -35,7 +36,7 @@ static const char hash_object_usage[] =
int main(int argc, char **argv)
{
int i;
const char *type = "blob";
const char *type = blob_type;
int write_object = 0;
const char *prefix = NULL;
int prefix_length = -1;

12
index-pack.c

@ -2,6 +2,10 @@ @@ -2,6 +2,10 @@
#include "delta.h"
#include "pack.h"
#include "csum-file.h"
#include "blob.h"
#include "commit.h"
#include "tag.h"
#include "tree.h"

static const char index_pack_usage[] =
"git-index-pack [-o index-file] pack-file";
@ -224,10 +228,10 @@ static void sha1_object(const void *data, unsigned long size, @@ -224,10 +228,10 @@ static void sha1_object(const void *data, unsigned long size,
const char *type_str;

switch (type) {
case OBJ_COMMIT: type_str = "commit"; break;
case OBJ_TREE: type_str = "tree"; break;
case OBJ_BLOB: type_str = "blob"; break;
case OBJ_TAG: type_str = "tag"; break;
case OBJ_COMMIT: type_str = commit_type; break;
case OBJ_TREE: type_str = tree_type; break;
case OBJ_BLOB: type_str = blob_type; break;
case OBJ_TAG: type_str = tag_type; break;
default:
die("bad type %d", type);
}

4
ls-tree.c

@ -56,7 +56,7 @@ static int show_tree(unsigned char *sha1, const char *base, int baselen, @@ -56,7 +56,7 @@ static int show_tree(unsigned char *sha1, const char *base, int baselen,
const char *pathname, unsigned mode, int stage)
{
int retval = 0;
const char *type = "blob";
const char *type = blob_type;

if (S_ISDIR(mode)) {
if (show_recursive(base, baselen, pathname)) {
@ -64,7 +64,7 @@ static int show_tree(unsigned char *sha1, const char *base, int baselen, @@ -64,7 +64,7 @@ static int show_tree(unsigned char *sha1, const char *base, int baselen,
if (!(ls_options & LS_SHOW_TREES))
return retval;
}
type = "tree";
type = tree_type;
}
else if (ls_options & LS_TREE_ONLY)
return 0;

3
mktag.c

@ -1,4 +1,5 @@ @@ -1,4 +1,5 @@
#include "cache.h"
#include "tag.h"

/*
* A signature file has a very simple fixed format: three lines
@ -126,7 +127,7 @@ int main(int argc, char **argv) @@ -126,7 +127,7 @@ int main(int argc, char **argv)
if (verify_tag(buffer, size) < 0)
die("invalid tag signature file");

if (write_sha1_file(buffer, size, "tag", result_sha1) < 0)
if (write_sha1_file(buffer, size, tag_type, result_sha1) < 0)
die("unable to write tag file");
printf("%s\n", sha1_to_hex(result_sha1));
return 0;

3
mktree.c

@ -6,6 +6,7 @@ @@ -6,6 +6,7 @@
#include "cache.h"
#include "strbuf.h"
#include "quote.h"
#include "tree.h"

static struct treeent {
unsigned mode;
@ -67,7 +68,7 @@ static void write_tree(unsigned char *sha1) @@ -67,7 +68,7 @@ static void write_tree(unsigned char *sha1)
memcpy(buffer + offset, ent->sha1, 20);
offset += 20;
}
write_sha1_file(buffer, offset, "tree", sha1);
write_sha1_file(buffer, offset, tree_type, sha1);
}

static const char mktree_usage[] = "mktree [-z]";

8
object.c

@ -196,15 +196,15 @@ struct object *parse_object(const unsigned char *sha1) @@ -196,15 +196,15 @@ struct object *parse_object(const unsigned char *sha1)
struct object *obj;
if (check_sha1_signature(sha1, buffer, size, type) < 0)
printf("sha1 mismatch %s\n", sha1_to_hex(sha1));
if (!strcmp(type, "blob")) {
if (!strcmp(type, blob_type)) {
struct blob *blob = lookup_blob(sha1);
parse_blob_buffer(blob, buffer, size);
obj = &blob->object;
} else if (!strcmp(type, "tree")) {
} else if (!strcmp(type, tree_type)) {
struct tree *tree = lookup_tree(sha1);
parse_tree_buffer(tree, buffer, size);
obj = &tree->object;
} else if (!strcmp(type, "commit")) {
} else if (!strcmp(type, commit_type)) {
struct commit *commit = lookup_commit(sha1);
parse_commit_buffer(commit, buffer, size);
if (!commit->buffer) {
@ -212,7 +212,7 @@ struct object *parse_object(const unsigned char *sha1) @@ -212,7 +212,7 @@ struct object *parse_object(const unsigned char *sha1)
buffer = NULL;
}
obj = &commit->object;
} else if (!strcmp(type, "tag")) {
} else if (!strcmp(type, tag_type)) {
struct tag *tag = lookup_tag(sha1);
parse_tag_buffer(tag, buffer, size);
obj = &tag->object;

16
pack-objects.c

@ -1,5 +1,9 @@ @@ -1,5 +1,9 @@
#include "cache.h"
#include "object.h"
#include "blob.h"
#include "commit.h"
#include "tag.h"
#include "tree.h"
#include "delta.h"
#include "pack.h"
#include "csum-file.h"
@ -603,7 +607,7 @@ static void add_pbase_tree(struct tree_desc *tree, struct name_path *up) @@ -603,7 +607,7 @@ static void add_pbase_tree(struct tree_desc *tree, struct name_path *up)
if (!add_object_entry(sha1, hash, 1))
continue;

if (!strcmp(type, "tree")) {
if (!strcmp(type, tree_type)) {
struct tree_desc sub;
void *elem;
struct name_path me;
@ -626,7 +630,7 @@ static void add_preferred_base(unsigned char *sha1) @@ -626,7 +630,7 @@ static void add_preferred_base(unsigned char *sha1)
struct tree_desc tree;
void *elem;

elem = read_object_with_reference(sha1, "tree", &tree.size, NULL);
elem = read_object_with_reference(sha1, tree_type, &tree.size, NULL);
tree.buf = elem;
if (!tree.buf)
return;
@ -684,13 +688,13 @@ static void check_object(struct object_entry *entry) @@ -684,13 +688,13 @@ static void check_object(struct object_entry *entry)
die("unable to get type of object %s",
sha1_to_hex(entry->sha1));

if (!strcmp(type, "commit")) {
if (!strcmp(type, commit_type)) {
entry->type = OBJ_COMMIT;
} else if (!strcmp(type, "tree")) {
} else if (!strcmp(type, tree_type)) {
entry->type = OBJ_TREE;
} else if (!strcmp(type, "blob")) {
} else if (!strcmp(type, blob_type)) {
entry->type = OBJ_BLOB;
} else if (!strcmp(type, "tag")) {
} else if (!strcmp(type, tag_type)) {
entry->type = OBJ_TAG;
} else
die("unable to pack object %s of type %s",

2
revision.c

@ -260,7 +260,7 @@ int rev_same_tree_as_empty(struct tree *t1) @@ -260,7 +260,7 @@ int rev_same_tree_as_empty(struct tree *t1)
if (!t1)
return 0;

tree = read_object_with_reference(t1->object.sha1, "tree", &real.size, NULL);
tree = read_object_with_reference(t1->object.sha1, tree_type, &real.size, NULL);
if (!tree)
return 0;
real.buf = tree;

40
sha1_file.c

@ -9,6 +9,10 @@ @@ -9,6 +9,10 @@
#include "cache.h"
#include "delta.h"
#include "pack.h"
#include "blob.h"
#include "commit.h"
#include "tag.h"
#include "tree.h"

#ifndef O_NOATIME
#if defined(__linux__) && (defined(__i386__) || defined(__PPC__))
@ -894,16 +898,16 @@ void packed_object_info_detail(struct pack_entry *e, @@ -894,16 +898,16 @@ void packed_object_info_detail(struct pack_entry *e,
}
switch (kind) {
case OBJ_COMMIT:
strcpy(type, "commit");
strcpy(type, commit_type);
break;
case OBJ_TREE:
strcpy(type, "tree");
strcpy(type, tree_type);
break;
case OBJ_BLOB:
strcpy(type, "blob");
strcpy(type, blob_type);
break;
case OBJ_TAG:
strcpy(type, "tag");
strcpy(type, tag_type);
break;
default:
die("corrupted pack file %s containing object of kind %d",
@ -934,16 +938,16 @@ static int packed_object_info(struct pack_entry *entry, @@ -934,16 +938,16 @@ static int packed_object_info(struct pack_entry *entry,
unuse_packed_git(p);
return retval;
case OBJ_COMMIT:
strcpy(type, "commit");
strcpy(type, commit_type);
break;
case OBJ_TREE:
strcpy(type, "tree");
strcpy(type, tree_type);
break;
case OBJ_BLOB:
strcpy(type, "blob");
strcpy(type, blob_type);
break;
case OBJ_TAG:
strcpy(type, "tag");
strcpy(type, tag_type);
break;
default:
die("corrupted pack file %s containing object of kind %d",
@ -1071,16 +1075,16 @@ void *unpack_entry_gently(struct pack_entry *entry, @@ -1071,16 +1075,16 @@ void *unpack_entry_gently(struct pack_entry *entry,
retval = unpack_delta_entry(pack, size, left, type, sizep, p);
return retval;
case OBJ_COMMIT:
strcpy(type, "commit");
strcpy(type, commit_type);
break;
case OBJ_TREE:
strcpy(type, "tree");
strcpy(type, tree_type);
break;
case OBJ_BLOB:
strcpy(type, "blob");
strcpy(type, blob_type);
break;
case OBJ_TAG:
strcpy(type, "tag");
strcpy(type, tag_type);
break;
default:
return NULL;
@ -1241,9 +1245,9 @@ void *read_object_with_reference(const unsigned char *sha1, @@ -1241,9 +1245,9 @@ void *read_object_with_reference(const unsigned char *sha1,
return buffer;
}
/* Handle references */
else if (!strcmp(type, "commit"))
else if (!strcmp(type, commit_type))
ref_type = "tree ";
else if (!strcmp(type, "tag"))
else if (!strcmp(type, tag_type))
ref_type = "object ";
else {
free(buffer);
@ -1625,7 +1629,7 @@ int index_pipe(unsigned char *sha1, int fd, const char *type, int write_object) @@ -1625,7 +1629,7 @@ int index_pipe(unsigned char *sha1, int fd, const char *type, int write_object)
return -1;
}
if (!type)
type = "blob";
type = blob_type;
if (write_object)
ret = write_sha1_file(buf, off, type, sha1);
else {
@ -1652,7 +1656,7 @@ int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object, con @@ -1652,7 +1656,7 @@ int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object, con
return -1;

if (!type)
type = "blob";
type = blob_type;
if (write_object)
ret = write_sha1_file(buf, size, type, sha1);
else {
@ -1690,9 +1694,9 @@ int index_path(unsigned char *sha1, const char *path, struct stat *st, int write @@ -1690,9 +1694,9 @@ int index_path(unsigned char *sha1, const char *path, struct stat *st, int write
if (!write_object) {
unsigned char hdr[50];
int hdrlen;
write_sha1_file_prepare(target, st->st_size, "blob",
write_sha1_file_prepare(target, st->st_size, blob_type,
sha1, hdr, &hdrlen);
} else if (write_sha1_file(target, st->st_size, "blob", sha1))
} else if (write_sha1_file(target, st->st_size, blob_type, sha1))
return error("%s: failed to insert into database",
path);
free(target);

2
tar-tree.c

@ -335,7 +335,7 @@ int main(int argc, char **argv) @@ -335,7 +335,7 @@ int main(int argc, char **argv)
} else
archive_time = time(NULL);

tree.buf = read_object_with_reference(sha1, "tree", &tree.size,
tree.buf = read_object_with_reference(sha1, tree_type, &tree.size,
tree_sha1);
if (!tree.buf)
die("not a reference to a tag, commit or tree object: %s",

7
tree-diff.c

@ -3,6 +3,7 @@ @@ -3,6 +3,7 @@
*/
#include "cache.h"
#include "diff.h"
#include "tree.h"

// What paths are we interested in?
static int nr_paths = 0;
@ -148,7 +149,7 @@ static int show_entry(struct diff_options *opt, const char *prefix, struct tree_ @@ -148,7 +149,7 @@ static int show_entry(struct diff_options *opt, const char *prefix, struct tree_
void *tree;

tree = read_sha1_file(sha1, type, &inner.size);
if (!tree || strcmp(type, "tree"))
if (!tree || strcmp(type, tree_type))
die("corrupt tree sha %s", sha1_to_hex(sha1));

inner.buf = tree;
@ -206,10 +207,10 @@ int diff_tree_sha1(const unsigned char *old, const unsigned char *new, const cha @@ -206,10 +207,10 @@ int diff_tree_sha1(const unsigned char *old, const unsigned char *new, const cha
struct tree_desc t1, t2;
int retval;

tree1 = read_object_with_reference(old, "tree", &t1.size, NULL);
tree1 = read_object_with_reference(old, tree_type, &t1.size, NULL);
if (!tree1)
die("unable to read source tree (%s)", sha1_to_hex(old));
tree2 = read_object_with_reference(new, "tree", &t2.size, NULL);
tree2 = read_object_with_reference(new, tree_type, &t2.size, NULL);
if (!tree2)
die("unable to read destination tree (%s)", sha1_to_hex(new));
t1.buf = tree1;

3
tree-walk.c

@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
#include "cache.h"
#include "tree-walk.h"
#include "tree.h"

void *fill_tree_descriptor(struct tree_desc *desc, const unsigned char *sha1)
{
@ -7,7 +8,7 @@ void *fill_tree_descriptor(struct tree_desc *desc, const unsigned char *sha1) @@ -7,7 +8,7 @@ void *fill_tree_descriptor(struct tree_desc *desc, const unsigned char *sha1)
void *buf = NULL;

if (sha1) {
buf = read_object_with_reference(sha1, "tree", &size, NULL);
buf = read_object_with_reference(sha1, tree_type, &size, NULL);
if (!buf)
die("unable to read tree %s", sha1_to_hex(sha1));
}

3
unpack-file.c

@ -1,4 +1,5 @@ @@ -1,4 +1,5 @@
#include "cache.h"
#include "blob.h"

static char *create_temp_file(unsigned char *sha1)
{
@ -9,7 +10,7 @@ static char *create_temp_file(unsigned char *sha1) @@ -9,7 +10,7 @@ static char *create_temp_file(unsigned char *sha1)
int fd;

buf = read_sha1_file(sha1, type, &size);
if (!buf || strcmp(type, "blob"))
if (!buf || strcmp(type, blob_type))
die("unable to read blob object %s", sha1_to_hex(sha1));

strcpy(path, ".merge_file_XXXXXX");

12
unpack-objects.c

@ -2,6 +2,10 @@ @@ -2,6 +2,10 @@
#include "object.h"
#include "delta.h"
#include "pack.h"
#include "blob.h"
#include "commit.h"
#include "tag.h"
#include "tree.h"

#include <sys/time.h>

@ -148,10 +152,10 @@ static int unpack_non_delta_entry(enum object_type kind, unsigned long size) @@ -148,10 +152,10 @@ static int unpack_non_delta_entry(enum object_type kind, unsigned long size)
const char *type;

switch (kind) {
case OBJ_COMMIT: type = "commit"; break;
case OBJ_TREE: type = "tree"; break;
case OBJ_BLOB: type = "blob"; break;
case OBJ_TAG: type = "tag"; break;
case OBJ_COMMIT: type = commit_type; break;
case OBJ_TREE: type = tree_type; break;
case OBJ_BLOB: type = blob_type; break;
case OBJ_TAG: type = tag_type; break;
default: die("bad type %d", kind);
}
if (!dry_run)

3
write-tree.c

@ -4,6 +4,7 @@ @@ -4,6 +4,7 @@
* Copyright (C) Linus Torvalds, 2005
*/
#include "cache.h"
#include "tree.h"

static int missing_ok = 0;

@ -78,7 +79,7 @@ static int write_tree(struct cache_entry **cachep, int maxentries, const char *b @@ -78,7 +79,7 @@ static int write_tree(struct cache_entry **cachep, int maxentries, const char *b
nr++;
}

write_sha1_file(buffer, offset, "tree", returnsha1);
write_sha1_file(buffer, offset, tree_type, returnsha1);
free(buffer);
return nr;
}

Loading…
Cancel
Save