diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2019-01-24 15:29:12 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-01-24 11:55:06 -0800 |
commit | f8adbec9feaa7a1ab9814db1115826e87033712e (patch) | |
tree | 5049172d68705c068c5cc0ea40a3f6afcf443fa5 /builtin/hash-object.c | |
parent | read-cache.c: remove the_* from index_has_changes() (diff) | |
download | tgif-f8adbec9feaa7a1ab9814db1115826e87033712e.tar.xz |
cache.h: flip NO_THE_INDEX_COMPATIBILITY_MACROS switch
By default, index compat macros are off from now on, because they
could hide the_index dependency.
Only those in builtin can use it.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/hash-object.c')
-rw-r--r-- | builtin/hash-object.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/hash-object.c b/builtin/hash-object.c index d6f06ea32f..e055c11103 100644 --- a/builtin/hash-object.c +++ b/builtin/hash-object.c @@ -40,7 +40,8 @@ static void hash_fd(int fd, const char *type, const char *path, unsigned flags, if (fstat(fd, &st) < 0 || (literally ? hash_literally(&oid, fd, type, flags) - : index_fd(&the_index, &oid, fd, &st, type_from_string(type), path, flags))) + : index_fd(the_repository->index, &oid, fd, &st, + type_from_string(type), path, flags))) die((flags & HASH_WRITE_OBJECT) ? "Unable to add %s to database" : "Unable to hash %s", path); |