mirror of
https://github.com/git/git.git
synced 2025-01-22 07:24:10 +08:00
Merge branch 'jc/gpg-status'
"git verify-tag" and "git verify-commit" have been taught to use the exit status of underlying "gpg --verify" to signal bad or untrusted signature they found. * jc/gpg-status: gpg-interface: propagate exit status from gpg back to the callers
This commit is contained in:
commit
4d34122eef
@ -136,12 +136,13 @@ int check_signature(const char *payload, size_t plen, const char *signature,
|
||||
sigc->gpg_output = strbuf_detach(&gpg_output, NULL);
|
||||
sigc->gpg_status = strbuf_detach(&gpg_status, NULL);
|
||||
parse_gpg_output(sigc);
|
||||
status |= sigc->result != 'G' && sigc->result != 'U';
|
||||
|
||||
out:
|
||||
strbuf_release(&gpg_status);
|
||||
strbuf_release(&gpg_output);
|
||||
|
||||
return sigc->result != 'G' && sigc->result != 'U';
|
||||
return !!status;
|
||||
}
|
||||
|
||||
void print_signature_buffer(const struct signature_check *sigc, unsigned flags)
|
||||
|
Loading…
Reference in New Issue
Block a user