diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2013-12-11 08:46:07 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-12-12 11:53:48 -0800 |
commit | de7b5d6218e4b928c5a395e34e5e1de40fae2a0d (patch) | |
tree | 6473995f18b338fa7278a44f2a4348fecabc4f74 /builtin | |
parent | sha1_file.c: add lookup_replace_object_extended() to pass flags (diff) | |
download | tgif-de7b5d6218e4b928c5a395e34e5e1de40fae2a0d.tar.xz |
sha1_object_info_extended(): add an "unsigned flags" parameter
This parameter is not used yet, but it will be used to tell
sha1_object_info_extended() if it should perform object
replacement or not.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/cat-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/cat-file.c b/builtin/cat-file.c index b2ca775a80..b15c0649e9 100644 --- a/builtin/cat-file.c +++ b/builtin/cat-file.c @@ -238,7 +238,7 @@ static int batch_one_object(const char *obj_name, struct batch_options *opt, return 0; } - if (sha1_object_info_extended(data->sha1, &data->info) < 0) { + if (sha1_object_info_extended(data->sha1, &data->info, LOOKUP_REPLACE_OBJECT) < 0) { printf("%s missing\n", obj_name); fflush(stdout); return 0; |