aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpascal <pascal@f5534014-38df-0310-8fa8-9805f1628bb7>2012-08-22 20:15:54 +0000
committerpascal <pascal@f5534014-38df-0310-8fa8-9805f1628bb7>2012-08-22 20:15:54 +0000
commitfe00e1ebb9dfc68d6fbac91dcdfabc4b1b7ea44e (patch)
treeb25c865cf258485b34dd71b38cbad68b24de5178
parent5109a8e8a4fded39520d46196938ed73243292bf (diff)
Try to make Ubuntu buildbot happy
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44615 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--epan/dissectors/packet-lisp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-lisp.c b/epan/dissectors/packet-lisp.c
index a0dd491ac7..b5dbc74f3e 100644
--- a/epan/dissectors/packet-lisp.c
+++ b/epan/dissectors/packet-lisp.c
@@ -319,11 +319,11 @@ dissect_lcaf_elp_hop(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
{
guint16 addr_len = 0;
guint16 hop_afi;
- guint16 hop_flags;
const gchar *hop_str;
hop_afi = tvb_get_ntohs(tvb, offset); offset += 2;
- hop_flags = tvb_get_ntohs(tvb, offset); offset += 2;
+ /* hop flags */
+ offset += 2;
hop_str = get_addr_str(tvb, offset, hop_afi, &addr_len);
if (hop_str == NULL) {
@@ -1448,7 +1448,7 @@ dissect_lisp_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *lisp_tree)
AFNUM_LCAF, afi);
} else {
lisp_lcaf_tree = proto_item_add_subtree(tir, ett_lisp_lcaf);
- offset = dissect_lcaf(tvb, pinfo, lisp_tree, offset);
+ offset = dissect_lcaf(tvb, pinfo, lisp_lcaf_tree, offset);
}
}