fix display data of unknown vendor specific pppoe tag

This commit is contained in:
mirkodeckert 2020-12-03 15:47:53 +00:00 committed by AndersBroman
parent dca19aa2b3
commit bfc7630e3c
1 changed files with 1 additions and 1 deletions

View File

@ -413,7 +413,7 @@ dissect_pppoe_subtags_dslf(tvbuff_t *tvb, packet_info *pinfo _U_, int offset, pr
proto_tree_add_item(pppoe_tree, hf_pppoed_tag_length_8, tvb, tagstart+1, 1, ENC_BIG_ENDIAN);
}
proto_tree_add_item(pppoe_tree, hf_pppoed_tag_unknown_data, tvb,
tagstart+1, poe_tag_length, ENC_NA);
tagstart+2, poe_tag_length, ENC_NA);
}
}