diff options
author | Michael J Gruber <git@drmicha.warpmail.net> | 2013-02-14 17:04:44 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-14 09:30:04 -0800 |
commit | 9cc4ac8ff1ae84f9435f2c7de3f7ab796103adba (patch) | |
tree | 7f5e079652c0ae7c107321c7b91cdead79240ccd /pretty.c | |
parent | 1315093f99f327ff498ae6c8afcc42651bbddebc (diff) | |
download | git-9cc4ac8ff1ae84f9435f2c7de3f7ab796103adba.tar.gz git-9cc4ac8ff1ae84f9435f2c7de3f7ab796103adba.tar.xz |
gpg_interface: allow to request status return
Currently, verify_signed_buffer() returns the user facing output only.
Allow callers to request the status output also.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pretty.c')
-rw-r--r-- | pretty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -917,7 +917,7 @@ static void parse_commit_signature(struct format_commit_context *ctx) goto out; status = verify_signed_buffer(payload.buf, payload.len, signature.buf, signature.len, - &gpg_output); + &gpg_output, NULL); if (status && !gpg_output.len) goto out; ctx->signature.gpg_output = strbuf_detach(&gpg_output, NULL); |