rename READ_SHA1_FILE_REPLACE flag to LOOKUP_REPLACE_OBJECT
The READ_SHA1_FILE_REPLACE flag is more related to using the lookup_replace_object() function rather than the read_sha1_file() function. We also need such a flag to be used with sha1_object_info() instead of read_sha1_file(). The name LOOKUP_REPLACE_OBJECT is therefore better for this flag. Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
d2446dfd7f
commit
ffe68cf9ac
@ -2662,7 +2662,7 @@ void *read_sha1_file_extended(const unsigned char *sha1,
|
||||
void *data;
|
||||
char *path;
|
||||
const struct packed_git *p;
|
||||
const unsigned char *repl = (flag & READ_SHA1_FILE_REPLACE)
|
||||
const unsigned char *repl = (flag & LOOKUP_REPLACE_OBJECT)
|
||||
? lookup_replace_object(sha1) : sha1;
|
||||
|
||||
errno = 0;
|
||||
|
Reference in New Issue
Block a user