verify-pack: use strbuf_strip_suffix
commitd6cd00c76866a6412e0c13da91a022acdd187a47
authorJeff King <peff@peff.net>
Mon, 30 Jun 2014 17:02:05 +0000 (30 13:02 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 30 Jun 2014 20:43:32 +0000 (30 13:43 -0700)
treeb2b37077b5e3646bd880d3e49a0169c0de4232b9
parent6dda4e60f2c3c309de6e3fe1b86a47846a86dabf
verify-pack: use strbuf_strip_suffix

In this code, we try to convert both "foo.idx" and "foo"
into "foo.pack". By stripping the suffix, we can avoid a
confusing use of strbuf_splice, and make it clear that both
cases are adding ".pack" to the end.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/verify-pack.c