mirror of
https://github.com/git/git.git
synced 2026-01-10 10:13:33 +00:00
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>
This commit is contained in:
committed by
Junio C Hamano
parent
fc9957b005
commit
8e44025925
3
entry.c
3
entry.c
@@ -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
|
||||
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)",
|
||||
|
||||
Reference in New Issue
Block a user