summaryrefslogtreecommitdiffstats
path: root/openpgp
diff options
context:
space:
mode:
authorJakub Onderka <5696495-JakubOnderka1@users.noreply.gitlab.com>2020-03-27 21:36:51 +0000
committerJakub Onderka <5696495-JakubOnderka1@users.noreply.gitlab.com>2020-03-27 21:36:51 +0000
commit7e0e84d8da8817d73470140cec5a9ccbea7b17a2 (patch)
tree46bd5a28d110be7ebde92859f34a205730153136 /openpgp
parent52902f0752f7faa95e9112a2618bd889fe4bdc77 (diff)
Fix merging UserIDs with other revocations
Diffstat (limited to 'openpgp')
-rw-r--r--openpgp/src/cert/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/cert/mod.rs b/openpgp/src/cert/mod.rs
index c665a7f3..7f507eb2 100644
--- a/openpgp/src/cert/mod.rs
+++ b/openpgp/src/cert/mod.rs
@@ -187,7 +187,7 @@ impl<C> ComponentBundles<C>
b.self_signatures.append(&mut a.self_signatures);
b.certifications.append(&mut a.certifications);
b.self_revocations.append(&mut a.self_revocations);
- b.other_revocations.append(&mut a.self_revocations);
+ b.other_revocations.append(&mut a.other_revocations);
true
} else {