diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-05-06 22:09:59 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-08 15:12:57 +0900 |
commit | 9e31eafe7e98bab5013e598037e5581739fd4f42 (patch) | |
tree | 515dba1dc6032bc45765b925939a2b7fa677656a /parse-options-cb.c | |
parent | 569aa376ea2bb3f27f6248543f3df91c71e612d6 (diff) | |
download | git-9e31eafe7e98bab5013e598037e5581739fd4f42.tar.gz |
parse-options-cb: convert to struct object_id
This is a caller of lookup_commit_reference, which we will soon convert.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'parse-options-cb.c')
-rw-r--r-- | parse-options-cb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/parse-options-cb.c b/parse-options-cb.c index 7419780a9b..35a941fddc 100644 --- a/parse-options-cb.c +++ b/parse-options-cb.c @@ -80,14 +80,14 @@ int parse_opt_verbosity_cb(const struct option *opt, const char *arg, int parse_opt_commits(const struct option *opt, const char *arg, int unset) { - unsigned char sha1[20]; + struct object_id oid; struct commit *commit; if (!arg) return -1; - if (get_sha1(arg, sha1)) + if (get_oid(arg, &oid)) return error("malformed object name %s", arg); - commit = lookup_commit_reference(sha1); + commit = lookup_commit_reference(oid.hash); if (!commit) return error("no such commit %s", arg); commit_list_insert(commit, opt->value); |