diff options
Diffstat (limited to 'ui_70-refs.c')
-rw-r--r-- | ui_70-refs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui_70-refs.c b/ui_70-refs.c index 8bf65af..7d62e03 100644 --- a/ui_70-refs.c +++ b/ui_70-refs.c @@ -1,6 +1,7 @@ /* ui-refs.c: browse symbolic refs * * Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com> + * 2018 Vincenzo 'KatolaZ' Nicosia <katolaz@freaknet.org> * * Licensed under GNU General Public License v2 * (see COPYING for full license text) @@ -97,7 +98,7 @@ static int print_tag(struct refinfo *ref) cgit_gopher_start_selector(GOPHER_MENU); cgit_gopher_text_pad(name, GOPHER_SUMMARY_NAME_LEN); - cgit_gopher_text_pad("@@@ commit id here @@@", GOPHER_SUMMARY_DESC_LEN); + cgit_gopher_text_pad(oid_to_hex(&obj->oid), GOPHER_SUMMARY_DESC_LEN); if (info) { if (info->tagger) { cgit_gopher_text_pad(info->tagger, GOPHER_SUMMARY_AUTH_LEN); |