summary refs log tree commit diff
path: root/tag.c
diff options
context:
space:
mode:
authorLukas Puehringer <luk.puehringer@gmail.com>2017-01-17 18:37:18 -0500
committerJunio C Hamano <gitster@pobox.com>2017-01-17 16:10:22 -0800
commit94240b918f70560393516aa8f98edb877d582c69 (patch)
treebbf21ce1762c8d76d5a3be3182212b12dd387540 /tag.c
parent3ef7618e616e023cf04180e30d77c9fa5310f964 (diff)
gpg-interface, tag: add GPG_VERIFY_OMIT_STATUS flag
Functions that print git object information may require that the
gpg-interface functions be silent. Add GPG_VERIFY_OMIT_STATUS flag and
prevent print_signature_buffer from being called if flag is set.

Signed-off-by: Lukas Puehringer <luk.puehringer@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tag.c b/tag.c
index d1dcd18cd7..243d1fdbbc 100644
--- a/tag.c
+++ b/tag.c
@@ -3,6 +3,7 @@
 #include "commit.h"
 #include "tree.h"
 #include "blob.h"
+#include "gpg-interface.h"
 
 const char *tag_type = "tag";
 
@@ -24,7 +25,9 @@ static int run_gpg_verify(const char *buf, unsigned long size, unsigned flags)
 
 	ret = check_signature(buf, payload_size, buf + payload_size,
 				size - payload_size, &sigc);
-	print_signature_buffer(&sigc, flags);
+
+	if (!(flags & GPG_VERIFY_OMIT_STATUS))
+		print_signature_buffer(&sigc, flags);
 
 	signature_check_clear(&sigc);
 	return ret;