aboutsummaryrefslogtreecommitdiffstats
path: root/tests/gpg/t-keylist-sig.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2005-12-06 16:30:21 +0000
committerWerner Koch <[email protected]>2005-12-06 16:30:21 +0000
commita1e484f9eac9dfc8e29fdd4955bf8b422ae52061 (patch)
tree2cc2924c13c40f3107e453fb2f39bdb08591514e /tests/gpg/t-keylist-sig.c
parent2005-11-27 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-a1e484f9eac9dfc8e29fdd4955bf8b422ae52061.tar.gz
gpgme-a1e484f9eac9dfc8e29fdd4955bf8b422ae52061.zip
* Fixed a bug in that the fingerprints of subkeys are not available.
* Clarified usage of the SECRET flag in key listings. It is now reset for stub keys.
Diffstat (limited to 'tests/gpg/t-keylist-sig.c')
-rw-r--r--tests/gpg/t-keylist-sig.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/gpg/t-keylist-sig.c b/tests/gpg/t-keylist-sig.c
index e3e577bd..b89ba33d 100644
--- a/tests/gpg/t-keylist-sig.c
+++ b/tests/gpg/t-keylist-sig.c
@@ -310,10 +310,9 @@ main (int argc, char **argv)
key->subkeys->next->keyid);
exit (1);
}
- if (key->subkeys->next->fpr)
+ if (!key->subkeys->next->fpr)
{
- fprintf (stderr, "Secondary key has unexpectedly a fingerprint: %s\n",
- key->subkeys->next->fpr);
+ fprintf (stderr, "Secondary key has unexpectedly no fingerprint\n");
exit (1);
}
if (key->subkeys->next->expires)
@@ -467,7 +466,7 @@ main (int argc, char **argv)
after importing the secret key. We disable this test for
now. */
#ifdef __GNUC__
-#warning test disabled due to problems with gpg 1.3.4
+#warning test disabled due to problems with gpg 1.3.4 generated key
#endif
if (key->uids && (!key->uids->next->signatures /*|| key->uids->next->signatures->next*/))
{