aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2015-08-24 12:16:06 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2015-08-24 11:48:55 +0000
commitd7e3076c90cca172b67129a289172a88069f6503 (patch)
tree8a0b1ae0498244354d661c04e9a9b12db8717dcf
parentbc0d8d18a6ec2f2c8c850b943f75537925d1be20 (diff)
IPv6 RPL: "cmprI" should be "cumprE"
Bug: 10560 Change-Id: I7cf9fb8ad39d128ed375abb8703937be8e3795b3 Reviewed-on: https://code.wireshark.org/review/10228 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
-rw-r--r--epan/dissectors/packet-ipv6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ipv6.c b/epan/dissectors/packet-ipv6.c
index ffd11721dc..28ee8b325d 100644
--- a/epan/dissectors/packet-ipv6.c
+++ b/epan/dissectors/packet-ipv6.c
@@ -987,7 +987,7 @@ dissect_routing6(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data
if (segments == 1) {
struct e_in6_addr addr;
- proto_tree_add_item(rthdr_tree, hf_ipv6_routing_hdr_rpl_addr, tvb, offset, (16-cmprI), ENC_NA);
+ proto_tree_add_item(rthdr_tree, hf_ipv6_routing_hdr_rpl_addr, tvb, offset, (16-cmprE), ENC_NA);
/* Display Full Address */
memcpy((guint8 *)&addr, (guint8 *)&dstAddr, sizeof(dstAddr));
tvb_memcpy(tvb, (guint8 *)&addr + cmprE, offset, (16-cmprE));