diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2015-06-21 23:14:41 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-06-22 14:20:47 -0700 |
commit | ca194d50b84b53a0b711fef46d1a47657ec5da41 (patch) | |
tree | b1218e292a895da641a1faa2c7b524de36ea039d /gpg-interface.c | |
parent | 434060ec6d9bf50f095db901da3fb9b557e11df1 (diff) | |
download | git-ca194d50b84b53a0b711fef46d1a47657ec5da41.tar.gz |
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.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gpg-interface.c b/gpg-interface.c index 77a4da627e..e764fb625b 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 |