X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=transport.c;h=1a3998ee51e6edf090b18cfd90f4c2c78aece7c6;hb=114a6a889f5d21c26800c395a97cdd400073a9e8;hp=a02f79aae3d91ea4109d21a9ed9ca2d962125375;hpb=bf0c5bbe2566d756d7468331161461ea9fec3b1f;p=thirdparty%2Fgit.git diff --git a/transport.c b/transport.c index a02f79aae3..1a3998ee51 100644 --- a/transport.c +++ b/transport.c @@ -1190,14 +1190,20 @@ literal_copy: return xstrdup(url); } -int refs_from_alternate_cb(struct alternate_object_database *e, void *cb) +struct alternate_refs_data { + alternate_ref_fn *fn; + void *data; +}; + +static int refs_from_alternate_cb(struct alternate_object_database *e, + void *data) { char *other; size_t len; struct remote *remote; struct transport *transport; const struct ref *extra; - alternate_ref_fn *ref_fn = cb; + struct alternate_refs_data *cb = data; e->name[-1] = '\0'; other = xstrdup(real_path(e->base)); @@ -1218,8 +1224,16 @@ int refs_from_alternate_cb(struct alternate_object_database *e, void *cb) for (extra = transport_get_remote_refs(transport); extra; extra = extra->next) - ref_fn(extra, NULL); + cb->fn(extra, cb->data); transport_disconnect(transport); free(other); return 0; } + +void for_each_alternate_ref(alternate_ref_fn fn, void *data) +{ + struct alternate_refs_data cb; + cb.fn = fn; + cb.data = data; + foreach_alt_odb(refs_from_alternate_cb, &cb); +}