commit 16dcbf911ae4975f21c1f64bde440e5ec54fc195 from: Stefan Sperling date: Sun Apr 01 13:59:36 2018 UTC remove debug code accidentally committed commit - 72eb343178e036e8e57e1991ef5c4a99ca020ef4 commit + 16dcbf911ae4975f21c1f64bde440e5ec54fc195 blob - 43b6e180a1c7bf8a46d512b4008713108df58f76 blob + 6313d031a5b903027caf386868de4d416ba4c28c --- lib/pack.c +++ lib/pack.c @@ -301,8 +301,6 @@ get_object_idx(struct got_packidx_v2_hdr *packidx, str u_int8_t id0 = id->sha1[0]; uint32_t totobj = betoh32(packidx->fanout_table[0xff]); int i = 0; - char hex[SHA1_DIGEST_STRING_LENGTH]; - char *sha1str = got_sha1_digest_to_str(id->sha1, hex, sizeof(hex)); if (id0 > 0) i = betoh32(packidx->fanout_table[id0 - 1]); @@ -311,20 +309,8 @@ get_object_idx(struct got_packidx_v2_hdr *packidx, str struct got_object_id *oid = &packidx->sorted_ids[i]; int cmp = got_object_id_cmp(id, oid); - if (cmp == 0) { - char *path_packfile = NULL; - const struct got_error *err; - err = get_packfile_path(&path_packfile, repo, packidx); - if (err) { - printf("get_packfile_path: %s\n", err->msg); - } else { - if (strcmp(sha1str, "b3197d9ea53a42fc1632369008b8f3a085dcd205") == 0) { - printf("Found %s in %s\n", sha1str, path_packfile); - } - } - free(path_packfile); + if (cmp == 0) return i; - } i++; }