diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-08-03 11:01:12 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-03 11:01:12 -0700 |
commit | ba12cb299f831f29c256c644b01108710c2629e6 (patch) | |
tree | 9887b1a34695488488f7ea86f9906c93e2164543 /commit.h | |
parent | e7cf4b257179b4683fa32beb51f949666d36fe9c (diff) | |
parent | e18443ece711564145d545b650851c4615717128 (diff) | |
download | git-ba12cb299f831f29c256c644b01108710c2629e6.tar.gz |
Merge branch 'bc/gpg-verify-raw'
"git verify-tag" and "git verify-commit" have been taught to share
more code, and then learned to optionally show the verification
message from the underlying GPG implementation.
* bc/gpg-verify-raw:
verify-tag: add option to print raw gpg status information
verify-commit: add option to print raw gpg status information
gpg: centralize printing signature buffers
gpg: centralize signature check
verify-commit: add test for exit status on untrusted signature
verify-tag: share code with verify-commit
verify-tag: add tests
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -379,7 +379,7 @@ extern void print_commit_list(struct commit_list *list, * at all. This may allocate memory for sig->gpg_output, sig->gpg_status, * sig->signer and sig->key. */ -extern void check_commit_signature(const struct commit *commit, struct signature_check *sigc); +extern int check_commit_signature(const struct commit *commit, struct signature_check *sigc); int compare_commits_by_commit_date(const void *a_, const void *b_, void *unused); |