Only produce hex dumps of information fields
This commit is contained in:
parent
bbbe7f8bfd
commit
f113eb4e8a
1 changed files with 4 additions and 2 deletions
|
@ -130,8 +130,10 @@ static int frame_fprint(FILE *stream,
|
|||
goto error_io;
|
||||
}
|
||||
|
||||
if (hexdump_fprint(stream, data, len) < 0) {
|
||||
goto error_io;
|
||||
if (frame->info) {
|
||||
if (hexdump_fprint(stream, frame->info, frame->len) < 0) {
|
||||
goto error_io;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue