summaryrefslogtreecommitdiff
path: root/gpg-interface.c
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2015-06-21 23:14:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-06-22 21:20:47 (GMT)
commitca194d50b84b53a0b711fef46d1a47657ec5da41 (patch)
treeb1218e292a895da641a1faa2c7b524de36ea039d /gpg-interface.c
parent434060ec6d9bf50f095db901da3fb9b557e11df1 (diff)
downloadgit-ca194d50b84b53a0b711fef46d1a47657ec5da41.zip
git-ca194d50b84b53a0b711fef46d1a47657ec5da41.tar.gz
git-ca194d50b84b53a0b711fef46d1a47657ec5da41.tar.bz2
gpg: centralize printing signature buffers
The code to handle printing of signature data from a struct signature_check is very similar between verify-commit and verify-tag. Place this in a single function. verify-tag retains its special case behavior of printing the tag even when no valid signature is found. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gpg-interface.c')
-rw-r--r--gpg-interface.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/gpg-interface.c b/gpg-interface.c
index 77a4da6..e764fb6 100644
--- a/gpg-interface.c
+++ b/gpg-interface.c
@@ -85,6 +85,15 @@ int check_signature(const char *payload, size_t plen, const char *signature,
return sigc->result != 'G' && sigc->result != 'U';
}
+void print_signature_buffer(const struct signature_check *sigc, unsigned flags)
+{
+ if (flags & GPG_VERIFY_VERBOSE && sigc->payload)
+ fputs(sigc->payload, stdout);
+
+ if (sigc->gpg_output)
+ fputs(sigc->gpg_output, stderr);
+}
+
/*
* Look at GPG signed content (e.g. a signed tag object), whose
* payload is followed by a detached signature on it. Return the