mirror of
https://github.com/moparisthebest/open-keychain
synced 2025-02-17 07:30:14 -05:00
fix subkey certification canonicalization (why did the test not catch this?!)
This commit is contained in:
parent
28df004cbb
commit
6e7b999409
@ -593,7 +593,7 @@ public class UncachedKeyRing {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// if we already have a cert, and this one is not newer: skip it
|
// if we already have a cert, and this one is not newer: skip it
|
||||||
if (selfCert != null && selfCert.getCreationTime().before(cert.getCreationTime())) {
|
if (selfCert != null && cert.getCreationTime().before(selfCert.getCreationTime())) {
|
||||||
log.add(LogLevel.DEBUG, LogType.MSG_KC_SUB_DUP, indent);
|
log.add(LogLevel.DEBUG, LogType.MSG_KC_SUB_DUP, indent);
|
||||||
redundantCerts += 1;
|
redundantCerts += 1;
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user