Commit e2f84af473bb6887ac1d0317ece787fc4364b23a

Stefan Sperling 2020-03-18T16:11:30

remove got_has_object() for now; this would require imsg to main process

diff --git a/libexec/got-fetch-pack/got-fetch-pack.c b/libexec/got-fetch-pack/got-fetch-pack.c
index 225b388..9450b19 100644
--- a/libexec/got-fetch-pack/got-fetch-pack.c
+++ b/libexec/got-fetch-pack/got-fetch-pack.c
@@ -193,13 +193,6 @@ check_pack_hash(int fd, size_t sz, uint8_t *hcomp)
 	return 0;
 }
 
-int
-got_has_object(struct got_object_id *obj)
-{
-	/* TODO */
-	return 0;
-}
-
 static int
 match_branch(char *br, char *pat)
 {
@@ -476,8 +469,6 @@ fetch_pack(int fd, int packfd, struct got_object_id *packid,
 	for (i = 0; i < nref; i++) {
 		if (got_object_id_cmp(&have[i], &want[i]) == 0)
 			continue;
-		if (got_has_object(&want[i]))
-			continue;
 		got_sha1_digest_to_str(want[i].sha1, hashstr, sizeof(hashstr));
 		n = snprintf(buf, sizeof(buf), "want %s%s%s\n", hashstr,
 		   i == 0 && my_capabilities ? " " : "",