Revert "Print the fingerprint instead of the raw pointer in debugging message"

This reverts commit b916595168.
This commit is contained in:
Darshit Shah 2016-03-29 15:07:29 +02:00
parent 281ad7dfb9
commit 722675553c
2 changed files with 4 additions and 1 deletions

0
ChangeLog Normal file
View File

View File

@ -342,7 +342,10 @@ retrieve_from_metalink (const metalink_t* metalink)
/* The list is null-terminated. */
for (gpgsig = gpgres->signatures; gpgsig; gpgsig = gpgsig->next)
{
DEBUGP (("Checking signature %s\n", gpgsig->fpr));
DEBUGP (("Checking signature 0x%p\n",
(void *) gpgsig));
DEBUGP (("Summary=0x%x Status=0x%x\n",
gpgsig->summary, gpgsig->status & 0xFFFF));
if (gpgsig->summary
& (GPGME_SIGSUM_VALID | GPGME_SIGSUM_GREEN))