diff options
| author | Junio C Hamano <gitster@pobox.com> | 2017-08-11 13:26:55 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2017-08-11 13:26:55 -0700 |
| commit | 3943f6caaa7613145448ebdca181e1feaf941a02 (patch) | |
| tree | f323116aa615c2a60cf57f9faed3435dd8a4a870 /builtin/tag.c | |
| parent | Merge tag 'v2.14.1' (diff) | |
| parent | tag: convert gpg_verify_tag to use struct object_id (diff) | |
| download | git-3943f6caaa7613145448ebdca181e1feaf941a02.tar.gz git-3943f6caaa7613145448ebdca181e1feaf941a02.zip | |
Merge branch 'sb/object-id'
Conversion from uchar[20] to struct object_id continues.
* sb/object-id:
tag: convert gpg_verify_tag to use struct object_id
commit: convert lookup_commit_graft to struct object_id
Diffstat (limited to 'builtin/tag.c')
| -rw-r--r-- | builtin/tag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/tag.c b/builtin/tag.c index 01154ea8dc..b25bf8daa2 100644 --- a/builtin/tag.c +++ b/builtin/tag.c @@ -111,7 +111,7 @@ static int verify_tag(const char *name, const char *ref, if (fmt_pretty) flags = GPG_VERIFY_OMIT_STATUS; - if (gpg_verify_tag(oid->hash, name, flags)) + if (gpg_verify_tag(oid, name, flags)) return -1; if (fmt_pretty) |
