git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH/RFC] builtin/tag: Changes argument format for verify
@ 2016-02-27  0:27 santiago
  2016-02-27  4:36 ` Jeff King
  0 siblings, 1 reply; 6+ messages in thread
From: santiago @ 2016-02-27  0:27 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano, Jeff King, Santiago Torres

From: Santiago Torres <santiago@nyu.edu>

The verify tag function converts the commit sha1 to hex and passes it as
a command-line argument to builtin/verify-tag. Given that builtin/verify-tag
already resolves the ref name sha1 equivalent, the sha1 to
hex_sha1 conversion is unnecessary and the ref-name can be used instead.

Signed-off-by: Santiago Torres <santiago@nyu.edu>
---
 builtin/tag.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/builtin/tag.c b/builtin/tag.c
index 1705c94..5de1161 100644
--- a/builtin/tag.c
+++ b/builtin/tag.c
@@ -105,8 +105,7 @@ static int verify_tag(const char *name, const char *ref,
 				const unsigned char *sha1)
 {
 	const char *argv_verify_tag[] = {"verify-tag",
-					"-v", "SHA1_HEX", NULL};
-	argv_verify_tag[2] = sha1_to_hex(sha1);
+					"-v", name, NULL};
 
 	if (run_command_v_opt(argv_verify_tag, RUN_GIT_CMD))
 		return error(_("could not verify the tag '%s'"), name);
-- 
2.7.0.435.g70bd996.dirty

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-03-03 22:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-27  0:27 [PATCH/RFC] builtin/tag: Changes argument format for verify santiago
2016-02-27  4:36 ` Jeff King
2016-02-27 17:45   ` Santiago Torres
2016-02-27 18:31     ` Jeff King
2016-03-03 22:05       ` Santiago Torres
2016-03-03 22:26         ` Jeff King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).