summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openpgp-ffi/src/parse/stream.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/openpgp-ffi/src/parse/stream.rs b/openpgp-ffi/src/parse/stream.rs
index cce302ad..28933a53 100644
--- a/openpgp-ffi/src/parse/stream.rs
+++ b/openpgp-ffi/src/parse/stream.rs
@@ -819,6 +819,10 @@ impl DHelper {
}
impl VerificationHelper for DHelper {
+ fn inspect(&mut self, pp: &PacketParser) -> openpgp::Result<()> {
+ self.vhelper.inspect(pp)
+ }
+
fn get_certs(&mut self, ids: &[openpgp::KeyHandle])
-> Result<Vec<openpgp::Cert>, anyhow::Error>
{