ppp: remove a variable that is always 0

Change-Id: Id398c4a89562c1d9f444f6d444b1a27c131ef3f1
Reviewed-on: https://code.wireshark.org/review/29321
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
This commit is contained in:
Martin Kaiser 2018-08-23 23:07:32 +02:00 committed by Anders Broman
parent fb3df8b6a8
commit bf025370e9
1 changed files with 1 additions and 2 deletions

View File

@ -4865,14 +4865,13 @@ dissect_vsnp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_
{
proto_item *vsnp_item;
proto_tree *vsnp_tree;
guint32 offset = 0;
tvbuff_t *next_tvb;
col_set_str(pinfo->cinfo, COL_PROTOCOL, "VSNP");
vsnp_item = proto_tree_add_item(tree, proto_vsnp, tvb, 0, -1, ENC_NA);
vsnp_tree = proto_item_add_subtree(vsnp_item, ett_vsnp);
proto_tree_add_item(vsnp_tree, hf_vsnp_pdnid, tvb, offset, 1,
proto_tree_add_item(vsnp_tree, hf_vsnp_pdnid, tvb, 0, 1,
ENC_BIG_ENDIAN);
next_tvb = tvb_new_subset_remaining(tvb, 1);