mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-16 14:25:21 -05:00
Report output from signature checking to debug log
Move the (possibly still temporary) output generated during signature checking into the --debug output. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
f9505063f8
commit
2f060dec6a
@ -154,17 +154,17 @@ int _alpm_gpgme_checksig(const char *pkgpath, const pmpgpsig_t *sig)
|
|||||||
ret = -1;
|
ret = -1;
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
fprintf(stdout, "\nsummary=%x\n", gpgsig->summary);
|
_alpm_log(PM_LOG_DEBUG, "summary=%x\n", gpgsig->summary);
|
||||||
fprintf(stdout, "fpr=%s\n", gpgsig->fpr);
|
_alpm_log(PM_LOG_DEBUG, "fpr=%s\n", gpgsig->fpr);
|
||||||
fprintf(stdout, "status=%d\n", gpgsig->status);
|
_alpm_log(PM_LOG_DEBUG, "status=%d\n", gpgsig->status);
|
||||||
fprintf(stdout, "timestamp=%lu\n", gpgsig->timestamp);
|
_alpm_log(PM_LOG_DEBUG, "timestamp=%lu\n", gpgsig->timestamp);
|
||||||
fprintf(stdout, "wrong_key_usage=%u\n", gpgsig->wrong_key_usage);
|
_alpm_log(PM_LOG_DEBUG, "wrong_key_usage=%u\n", gpgsig->wrong_key_usage);
|
||||||
fprintf(stdout, "pka_trust=%u\n", gpgsig->pka_trust);
|
_alpm_log(PM_LOG_DEBUG, "pka_trust=%u\n", gpgsig->pka_trust);
|
||||||
fprintf(stdout, "chain_model=%u\n", gpgsig->chain_model);
|
_alpm_log(PM_LOG_DEBUG, "chain_model=%u\n", gpgsig->chain_model);
|
||||||
fprintf(stdout, "validity=%d\n", gpgsig->validity);
|
_alpm_log(PM_LOG_DEBUG, "validity=%d\n", gpgsig->validity);
|
||||||
fprintf(stdout, "validity_reason=%d\n", gpgsig->validity_reason);
|
_alpm_log(PM_LOG_DEBUG, "validity_reason=%d\n", gpgsig->validity_reason);
|
||||||
fprintf(stdout, "key=%d\n", gpgsig->pubkey_algo);
|
_alpm_log(PM_LOG_DEBUG, "key=%d\n", gpgsig->pubkey_algo);
|
||||||
fprintf(stdout, "hash=%d\n", gpgsig->hash_algo);
|
_alpm_log(PM_LOG_DEBUG, "hash=%d\n", gpgsig->hash_algo);
|
||||||
|
|
||||||
if(gpgsig->summary & GPGME_SIGSUM_VALID) {
|
if(gpgsig->summary & GPGME_SIGSUM_VALID) {
|
||||||
/* good signature, continue */
|
/* good signature, continue */
|
||||||
|
Loading…
Reference in New Issue
Block a user