aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-03-18 11:54:23 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-03-18 11:54:23 +0000
commitd033740bc78398bcf6e069ecbc5bbea067712afa (patch)
treeb020df4308dd43749c560b3a5a427953986904ef /epan
parent52594e8d9b942e323a61662810ebf71202442c34 (diff)
Fix typo (wrong proto_item is used... when there is PAD1 Option)
svn path=/trunk/; revision=41636
Diffstat (limited to 'epan')
-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 57a16dff01..9c92c9df4e 100644
--- a/epan/dissectors/packet-ipv6.c
+++ b/epan/dissectors/packet-ipv6.c
@@ -853,7 +853,7 @@ dissect_opts(tvbuff_t *tvb, int offset, proto_tree *tree, packet_info * pinfo, c
if (opt_type == IP6OPT_PAD1) {
proto_tree_add_item(opt_tree, hf_ipv6_opt_pad1, tvb, offset, 1, ENC_NA);
offset += 1;
- proto_item_append_text(ti, ")");
+ proto_item_append_text(ti_opt, ")");
continue;
}