From: Johannes Schindelin Date: Fri, 23 Feb 2007 01:56:31 +0000 (+0100) Subject: git-bundle: fix 'create --all' X-Git-Tag: v1.5.1-rc1~114^2~2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3d1efd8f1ddc0de423426b5a2a8c6c0a30f1d46e;p=git.git git-bundle: fix 'create --all' --- diff --git a/revision.c b/revision.c index 15bdaf609..c1bf5ea03 100644 --- a/revision.c +++ b/revision.c @@ -480,7 +480,7 @@ static int handle_one_ref(const char *path, const unsigned char *sha1, int flag, struct all_refs_cb *cb = cb_data; struct object *object = get_reference(cb->all_revs, path, sha1, cb->all_flags); - add_pending_object(cb->all_revs, object, ""); + add_pending_object(cb->all_revs, object, path); return 0; }