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 /builtin/verify-commit.c | |
parent | gpg: centralize signature check (diff) | |
download | tgif-ca194d50b84b53a0b711fef46d1a47657ec5da41.tar.xz |
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 'builtin/verify-commit.c')
-rw-r--r-- | builtin/verify-commit.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/builtin/verify-commit.c b/builtin/verify-commit.c index e30f7cfbc1..016319ada3 100644 --- a/builtin/verify-commit.c +++ b/builtin/verify-commit.c @@ -26,12 +26,7 @@ static int run_gpg_verify(const unsigned char *sha1, const char *buf, unsigned l memset(&signature_check, 0, sizeof(signature_check)); ret = check_commit_signature(lookup_commit(sha1), &signature_check); - - if (verbose && signature_check.payload) - fputs(signature_check.payload, stdout); - - if (signature_check.gpg_output) - fputs(signature_check.gpg_output, stderr); + print_signature_buffer(&signature_check, verbose ? GPG_VERIFY_VERBOSE : 0); signature_check_clear(&signature_check); return ret; |