Skip to content

Commit

Permalink
trivial: Print the fingerprint of the sig used for verification
Browse files Browse the repository at this point in the history
  • Loading branch information
hughsie committed Mar 29, 2016
1 parent bb49bd5 commit e4141f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/fu-keyring.c
Expand Up @@ -322,6 +322,7 @@ fu_keyring_verify_file (FuKeyring *keyring,

/* look at each signature */
for (s = result->signatures; s != NULL ; s = s->next ) {
g_debug ("returned signature fingerprint %s", s->fpr);
ret = fu_keyring_check_signature (s, error);
if (!ret)
goto out;
Expand Down Expand Up @@ -411,6 +412,7 @@ fu_keyring_verify_data (FuKeyring *keyring,

/* look at each signature */
for (s = result->signatures; s != NULL ; s = s->next ) {
g_debug ("returned signature fingerprint %s", s->fpr);
ret = fu_keyring_check_signature (s, error);
if (!ret)
goto out;
Expand Down

0 comments on commit e4141f4

Please sign in to comment.