summaryrefslogtreecommitdiff
path: root/sha1-name.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2019-04-16 09:33:37 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-04-16 09:56:53 (GMT)
commitec580eaaa3bdc2327d049932d1ebb2ca62aae837 (patch)
tree03249c7383eb52812d9de970380c9e3800833c88 /sha1-name.c
parentefe461b0811352b539e2cc4721aa5efcf11f0255 (diff)
downloadgit-ec580eaaa3bdc2327d049932d1ebb2ca62aae837.zip
git-ec580eaaa3bdc2327d049932d1ebb2ca62aae837.tar.gz
git-ec580eaaa3bdc2327d049932d1ebb2ca62aae837.tar.bz2
sha1-name.c: add repo_get_oid()
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1-name.c')
-rw-r--r--sha1-name.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sha1-name.c b/sha1-name.c
index 64a50d1..953df0d 100644
--- a/sha1-name.c
+++ b/sha1-name.c
@@ -1573,10 +1573,10 @@ int strbuf_check_branch_ref(struct strbuf *sb, const char *name)
* This is like "get_oid_basic()", except it allows "object ID expressions",
* notably "xyz^" for "parent of xyz"
*/
-int get_oid(const char *name, struct object_id *oid)
+int repo_get_oid(struct repository *r, const char *name, struct object_id *oid)
{
struct object_context unused;
- return get_oid_with_context(the_repository, name, 0, oid, &unused);
+ return get_oid_with_context(r, name, 0, oid, &unused);
}