summaryrefslogtreecommitdiffstats
path: root/tool/src/commands
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-08-11 11:35:35 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-08-11 14:32:13 +0200
commitb914ce71ee71477fb6e9cefc916ece157943917d (patch)
treeee8126395a952d39cf7a20038265ceb8d4192902 /tool/src/commands
parentc325bd5eee79cd83cc844e2dc7957aac4897ca61 (diff)
openpgp: Mark S2K as non-exhaustive to allow future extensions.
Diffstat (limited to 'tool/src/commands')
-rw-r--r--tool/src/commands/dump.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tool/src/commands/dump.rs b/tool/src/commands/dump.rs
index e99990ee..93986342 100644
--- a/tool/src/commands/dump.rs
+++ b/tool/src/commands/dump.rs
@@ -886,6 +886,7 @@ impl PacketDumper {
writeln!(output, "Private({})", n)?,
Unknown(n) =>
writeln!(output, "Unknown({})", n)?,
+ __Nonexhaustive => unreachable!(),
}
Ok(())
}