diff options
author | Vincent Breitmoser <valodim@mugenguild.com> | 2014-08-16 07:06:07 +0200 |
---|---|---|
committer | Vincent Breitmoser <valodim@mugenguild.com> | 2014-08-16 07:06:07 +0200 |
commit | 7c7ba217148d0560744fd417c4e76726df3ffec7 (patch) | |
tree | 69725fc408456bcb2dcb2e9367eb70459fe7dd48 /OpenKeychain | |
parent | 6e84c728011cebe44c3b2ef6c6cacee64098c16a (diff) | |
download | open-keychain-7c7ba217148d0560744fd417c4e76726df3ffec7.tar.gz open-keychain-7c7ba217148d0560744fd417c4e76726df3ffec7.tar.bz2 open-keychain-7c7ba217148d0560744fd417c4e76726df3ffec7.zip |
tests: add test for master key revocation
Diffstat (limited to 'OpenKeychain')
-rw-r--r-- | OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/UncachedKeyRing.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/UncachedKeyRing.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/UncachedKeyRing.java index 0a59ba9f8..ababd39e0 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/UncachedKeyRing.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/UncachedKeyRing.java @@ -271,13 +271,12 @@ public class UncachedKeyRing { for (PGPSignature zert : new IterableIterator<PGPSignature>(masterKey.getKeySignatures())) { int type = zert.getSignatureType(); - // Disregard certifications on user ids, we will deal with those later + // These should most definitely not be here... if (type == PGPSignature.NO_CERTIFICATION || type == PGPSignature.DEFAULT_CERTIFICATION || type == PGPSignature.CASUAL_CERTIFICATION || type == PGPSignature.POSITIVE_CERTIFICATION || type == PGPSignature.CERTIFICATION_REVOCATION) { - // These should not be here... log.add(LogLevel.WARN, LogType.MSG_KC_REVOKE_BAD_TYPE_UID, indent); modified = PGPPublicKey.removeCertification(modified, zert); badCerts += 1; |