diff options
author | Stefan Beller <sbeller@google.com> | 2018-06-28 18:21:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-29 10:43:38 -0700 |
commit | 5abddd1eb72ca47cc84a9fc888c30ebaadde2eec (patch) | |
tree | 3aa159b370a0ecc3ac88e8b3453c049f72af15c3 /builtin/name-rev.c | |
parent | object: add repository argument to parse_object (diff) | |
download | tgif-5abddd1eb72ca47cc84a9fc888c30ebaadde2eec.tar.xz |
object: add repository argument to lookup_object
Add a repository argument to allow callers of lookup_object to be more
specific about which repository to handle. This is a small mechanical
change; it doesn't change the implementation to handle repositories
other than the_repository yet.
As with the previous commits, use a macro to catch callers passing a
repository other than the_repository at compile time.
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/name-rev.c')
-rw-r--r-- | builtin/name-rev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/name-rev.c b/builtin/name-rev.c index de54fa93e4..f6eb419a02 100644 --- a/builtin/name-rev.c +++ b/builtin/name-rev.c @@ -379,7 +379,8 @@ static void name_rev_line(char *p, struct name_ref_data *data) *(p+1) = 0; if (!get_oid(p - (GIT_SHA1_HEXSZ - 1), &oid)) { struct object *o = - lookup_object(oid.hash); + lookup_object(the_repository, + oid.hash); if (o) name = get_rev_name(o, &buf); } |