summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-01-03 14:22:40 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-01-03 14:22:40 +0100
commit017bc64ea211994ad28f8550ee13195f02d7e8f2 (patch)
tree188ed0ff63c926e7dc126754ecc591050c1f511a /tool
parentd0740a2752c7bb089dcfc666cb8933aff2587ba4 (diff)
openpgp: Abbreviate CompressedData::algorithm to algo.
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 16ff8ac7..aed7fb15 100644
--- a/tool/src/commands/dump.rs
+++ b/tool/src/commands/dump.rs
@@ -566,7 +566,7 @@ impl PacketDumper {
},
CompressedData(ref c) => {
- writeln!(output, "{} Algorithm: {}", i, c.algorithm())?;
+ writeln!(output, "{} Algorithm: {}", i, c.algo())?;
},
PKESK(ref p) => {