name-rev: use strbuf_strip_suffix() in get_rev_name()
commitc3794d4ccb70c6b36be3fd4981682f422b04de05
authorRené Scharfe <l.s.r@web.de>
Tue, 12 Nov 2019 10:38:11 +0000 (12 11:38 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 6 Dec 2019 21:29:04 +0000 (6 13:29 -0800)
treed9101420ff7e83a13140f21b8d08d5beaa1e752a
parentc593a2634837234c91afc875cb569a53fbaadbfb
name-rev: use strbuf_strip_suffix() in get_rev_name()

get_name_rev() basically open-codes strip_suffix() before adding a
string to a strbuf.

Let's use the strbuf right from the beginning, i.e. add the whole
string to the strbuf and then use strbuf_strip_suffix(), making the
code more idiomatic.

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/name-rev.c