summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-09-11 12:23:26 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-09-11 12:23:26 +0200
commit5ca99787dce34100e43b8e1a2bf51454c9a6601a (patch)
tree4c333b52383b94b7dc219342ce9fdfe42021620d /tool
parent36d27de9bbae47c76a717f2808517f3ff63fc312 (diff)
openpgp: Move the ctb module to the header module.
Diffstat (limited to 'tool')
-rw-r--r--tool/src/commands/dump.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/commands/dump.rs b/tool/src/commands/dump.rs
index 5077ae66..a9b11cfe 100644
--- a/tool/src/commands/dump.rs
+++ b/tool/src/commands/dump.rs
@@ -7,7 +7,7 @@ use self::openpgp::conversions::hex;
use self::openpgp::crypto::mpis;
use self::openpgp::{Packet, Result};
use self::openpgp::packet::prelude::*;
-use self::openpgp::packet::ctb::CTB;
+use self::openpgp::packet::header::CTB;
use self::openpgp::packet::{Header, BodyLength, Signature};
use self::openpgp::packet::signature::subpacket::{Subpacket, SubpacketValue};
use self::openpgp::crypto::{SessionKey, s2k::S2K};