summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-03-21 16:10:26 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-03-21 16:39:30 +0100
commit7accf308157ed448095590a4d1763a99fb075537 (patch)
treea659e1de592b14f6d5b9745a7eeb9d1de25cd290 /tool
parent1e579754f0a2b21aabefcd73f51145cc33f820cd (diff)
openpgp: Rename UserAttribute's accessors.
- See #224.
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 95b8eeba..5e6e51fe 100644
--- a/tool/src/commands/dump.rs
+++ b/tool/src/commands/dump.rs
@@ -280,7 +280,7 @@ impl PacketDumper {
UserAttribute(ref u) => {
writeln!(output, "User Attribute Packet")?;
writeln!(output, "{} Value: {} bytes", i,
- u.user_attribute().len())?;
+ u.value().len())?;
},
Literal(ref l) => {