summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2020-05-05 13:33:28 +0200
committerNeal H. Walfield <neal@pep.foundation>2020-05-05 13:33:28 +0200
commitdd22ba5e10be4958755ae250305f58a40b60c1a9 (patch)
treef6f405acece47bf60cb84af5182b617bf1e4727c
parentb67cf1c60b76b6d9b54b10a021c10e4c4e55b498 (diff)
openpgp: Change split_sigs' visability.
-rw-r--r--openpgp/src/cert/parser/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/cert/parser/mod.rs b/openpgp/src/cert/parser/mod.rs
index a4faa6c0..88e3e46b 100644
--- a/openpgp/src/cert/parser/mod.rs
+++ b/openpgp/src/cert/parser/mod.rs
@@ -641,8 +641,8 @@ impl<'a, I: Iterator<Item=Packet>> CertParser<'a, I> {
/// Splits the signatures in b.certifications into the correct
/// vectors.
-pub fn split_sigs<C>(primary: &KeyHandle, primary_keyid: &KeyHandle,
- b: &mut ComponentBundle<C>)
+pub(crate) fn split_sigs<C>(primary: &KeyHandle, primary_keyid: &KeyHandle,
+ b: &mut ComponentBundle<C>)
{
let mut self_signatures = vec![];
let mut certifications = vec![];