summaryrefslogtreecommitdiffstats
path: root/tool/src/commands
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2020-09-02 10:13:39 +0200
committerNeal H. Walfield <neal@pep.foundation>2020-09-02 10:13:39 +0200
commitb1dc8cff0bf47b45f595e24fe25b3de1dcfafe24 (patch)
tree56bfc9224591ff386e6f986ab6309dedc53a9fdd /tool/src/commands
parent383133f6be990237044900a4df676488bf8dd71e (diff)
tool: Improve description.
- An unknown packet is unknown either because we don't understand the packet's type or we understand the type, but we don't support the particular version, e.g., v3 keys. - Improve 'sq packet dump''s description accordingly.
Diffstat (limited to 'tool/src/commands')
-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 3ecd864f..764c14f0 100644
--- a/tool/src/commands/dump.rs
+++ b/tool/src/commands/dump.rs
@@ -276,7 +276,7 @@ impl PacketDumper {
if let Some(tag) = p.kind() {
write!(output, "{}", tag)?;
} else {
- write!(output, "Unknown Packet")?;
+ write!(output, "Unknown or Unsupported Packet")?;
}
if let Some(h) = header {