Convert remaining callers of resolve_gitlink_ref to object_id

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
brian m. carlson
2017-10-15 22:07:06 +00:00
committed by Junio C Hamano
parent bcd2986473
commit 1053fe829c
4 changed files with 13 additions and 13 deletions

View File

@ -36,7 +36,7 @@ static int check_removed(const struct cache_entry *ce, struct stat *st)
if (has_symlink_leading_path(ce->name, ce_namelen(ce)))
return 1;
if (S_ISDIR(st->st_mode)) {
unsigned char sub[20];
struct object_id sub;
/*
* If ce is already a gitlink, we can have a plain
@ -50,7 +50,7 @@ static int check_removed(const struct cache_entry *ce, struct stat *st)
* a directory --- the blob was removed!
*/
if (!S_ISGITLINK(ce->ce_mode) &&
resolve_gitlink_ref(ce->name, "HEAD", sub))
resolve_gitlink_ref(ce->name, "HEAD", sub.hash))
return 1;
}
return 0;