packet-l2tp.c: In function 'dissect_l2tp_cisco_avps':
packet-l2tp.c:1296: warning: unused variable 'pw_type'
packet-l2tp.c: In function 'process_control_avps':
packet-l2tp.c:1789: warning: unused variable 'pw_type'

svn path=/trunk/; revision=50715
This commit is contained in:
Anders Broman 2013-07-18 04:17:58 +00:00
parent 617925c482
commit 7dcafd67c0
1 changed files with 0 additions and 3 deletions

View File

@ -1293,8 +1293,6 @@ static int dissect_l2tp_cisco_avps(tvbuff_t *tvb, packet_info *pinfo _U_, proto_
"Pseudowire Capabilities List");
l2tp_avp_tree_sub = proto_item_add_subtree(te, ett_l2tp_avp_sub);
while (avp_len >= 2) {
int pw_type = tvb_get_ntohs(tvb, offset);
proto_tree_add_item(l2tp_avp_tree_sub, hf_l2tp_cisco_pw_type, tvb, offset, 2, ENC_BIG_ENDIAN);
offset += 2;
avp_len -= 2;
@ -1786,7 +1784,6 @@ static void process_control_avps(tvbuff_t *tvb,
l2tp_avp_tree_sub = proto_item_add_subtree(te, ett_l2tp_avp_sub);
while (avp_len >= 2) {
int pw_type = tvb_get_ntohs(tvb, idx);
proto_tree_add_item(l2tp_avp_tree_sub, hf_l2tp_avp_pw_type, tvb, idx, 2, ENC_BIG_ENDIAN);
idx += 2;
avp_len -= 2;