diff options
author | Dimitri Sokolyuk <demon@dim13.org> | 2015-07-14 20:12:54 +0200 |
---|---|---|
committer | Dimitri Sokolyuk <demon@dim13.org> | 2015-07-14 20:12:54 +0200 |
commit | a1a7ee2520f375ab85a6e2a4a170e7e5116be1f4 (patch) | |
tree | 944c972aae03226e37a7246dbdad26fd30c96eb0 /ber | |
parent | affb3bc6b3dcfd80b6f2fa778abbf0c1705b643b (diff) |
Drop bitstring encoded representation
Diffstat (limited to 'ber')
-rw-r--r-- | ber/dump.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ber/dump.go b/ber/dump.go index d31ea78..56da5fd 100644 --- a/ber/dump.go +++ b/ber/dump.go @@ -26,7 +26,7 @@ func dump(b []byte, indent int) (s string) { case tagObjectIdentifier: s += fmt.Sprintln(tag, UnmarshalOID(value)) case tagBitString: - s += fmt.Sprintln(tag, UnmarshalBitString(value), value) + s += fmt.Sprintln(tag, UnmarshalBitString(value)) default: s += fmt.Sprintln(tag, kind, short(value)) } |