commit - ca0d469cb4212326f73d03f606119be5011f2d82
commit + 52b5abe1665698ac9f94f7f2d95482d27e131c16
blob - 9acbb83288278439a8f09ce722d49c2eb8619519
blob + 68b3bebcf73256d66fd1896739ae25c59583aa4d
--- tog/tog.c
+++ tog/tog.c
static const struct got_error*
build_refs_str(char **refs_str, struct got_reflist_head *refs,
- struct got_object_id *id)
+ struct got_object_id *id, struct got_repository *repo)
{
static const struct got_error *err = NULL;
struct got_reflist_entry *re;
*refs_str = NULL;
SIMPLEQ_FOREACH(re, refs, entry) {
- if (got_object_id_cmp(re->id, id) != 0)
- continue;
+ struct got_tag_object *tag = NULL;
+ int cmp;
+
name = got_ref_get_name(re->ref);
if (strcmp(name, GOT_REF_HEAD) == 0)
continue;
name += 6;
if (strncmp(name, "remotes/", 8) == 0)
name += 8;
+ if (strncmp(name, "tags/", 5) == 0) {
+ err = got_object_open_as_tag(&tag, repo, re->id);
+ if (err)
+ break;
+ }
+ cmp = got_object_id_cmp(tag ?
+ got_object_tag_get_object_id(tag) : re->id, id);
+ if (tag)
+ got_object_tag_close(tag);
+ if (cmp != 0)
+ continue;
s = *refs_str;
if (asprintf(refs_str, "%s%s%s", s ? s : "",
s ? ", " : "", name) == -1) {
struct got_reflist_head *refs, const char *path, int commits_needed)
{
const struct got_error *err = NULL;
+ struct tog_log_view_state *s = &view->state.log;
struct commit_queue_entry *entry;
int width;
int ncommits, author_cols = 10;
if (err)
return err;
if (refs) {
- err = build_refs_str(&refs_str, refs, (*selected)->id);
+ err = build_refs_str(&refs_str, refs, (*selected)->id,
+ s->repo);
if (err)
goto done;
}
char *refs_str = NULL;
if (refs) {
- err = build_refs_str(&refs_str, refs, commit_id);
+ err = build_refs_str(&refs_str, refs, commit_id, repo);
if (err)
return err;
}