X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=read-cache.c;h=4ac9a037f478e769a69072c324a47876e298cae4;hb=d5b66299040969706dd675c021f4336a26a6cc82;hp=f38471cac3ac57d8d52429cde2dcc4cf5b92557b;hpb=4bbfd8e3da6d5fde8f1e98900523996fd138d9fc;p=git.git diff --git a/read-cache.c b/read-cache.c index f38471cac..4ac9a037f 100644 --- a/read-cache.c +++ b/read-cache.c @@ -92,7 +92,7 @@ static int ce_compare_data(struct cache_entry *ce, struct stat *st) if (fd >= 0) { unsigned char sha1[20]; - if (!index_fd(sha1, fd, st, 0, OBJ_BLOB, ce->name, 0)) + if (!index_fd(sha1, fd, st, OBJ_BLOB, ce->name, 0)) match = hashcmp(sha1, ce->sha1); /* index_fd() closed the file descriptor already */ } @@ -641,7 +641,7 @@ int add_to_index(struct index_state *istate, const char *path, struct stat *st, return 0; } if (!intent_only) { - if (index_path(ce->sha1, path, st, 1)) + if (index_path(ce->sha1, path, st, HASH_WRITE_OBJECT)) return error("unable to index file %s", path); } else record_intent_to_add(ce);