diff options
author | Dimitri Sokolyuk <demon@dim13.org> | 2015-06-30 11:34:40 +0200 |
---|---|---|
committer | Dimitri Sokolyuk <demon@dim13.org> | 2015-06-30 11:34:40 +0200 |
commit | 882d080d69c279107557a70ebf5e579dc9563824 (patch) | |
tree | 00575cb44ec29e80cc7aff376fdf6b34f008185c | |
parent | 45cef1dc8837f5d2a4e6ee275fd52646c1a3b2a1 (diff) |
Show payload
-rw-r--r-- | parse/parse.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse/parse.go b/parse/parse.go index b816058..598284a 100644 --- a/parse/parse.go +++ b/parse/parse.go @@ -81,7 +81,7 @@ func dump(b []byte, indent int) { fmt.Println(tag, kind, value) } default: - fmt.Println(class, kind, byte(tag)) + fmt.Println(class, kind, byte(tag), value) } if len(value) > 0 && kind != ber.Primitive { |