aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-radius_packetcable.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2007-06-06 19:50:28 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2007-06-06 19:50:28 +0000
commita1a33fbcfc188fac7d4b2cbd0897ed04b07f9c4f (patch)
treedfad63ecd205f3d4a599f5580a0cd6705f73cccd /epan/dissectors/packet-radius_packetcable.c
parentdab003bbf07c505657e08b54d34a485142a646d9 (diff)
Fix for bug 1644.
Get the DST from the right offset in the tvb. svn path=/trunk/; revision=22058
Diffstat (limited to 'epan/dissectors/packet-radius_packetcable.c')
-rw-r--r--epan/dissectors/packet-radius_packetcable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-radius_packetcable.c b/epan/dissectors/packet-radius_packetcable.c
index e3a8c3378e..d07d54eeef 100644
--- a/epan/dissectors/packet-radius_packetcable.c
+++ b/epan/dissectors/packet-radius_packetcable.c
@@ -271,7 +271,7 @@ static const gchar* dissect_packetcable_em_hdr(proto_tree* tree, tvbuff_t* tvb)
tvb_memcpy(tvb, packetcable_buf, 30, 8); packetcable_buf[8] = '\0';
proto_tree_add_text(tree, tvb, 30, 8, "Element ID: %s", packetcable_buf );
tvb_memcpy(tvb, packetcable_buf, 39, 7); packetcable_buf[7] = '\0';
- proto_tree_add_text(tree, tvb, 38, 8, "Time Zone: DST: %c, Offset: %s", tvb_get_guint8(tvb, 40), packetcable_buf);
+ proto_tree_add_text(tree, tvb, 38, 8, "Time Zone: DST: %c, Offset: %s", tvb_get_guint8(tvb, 38), packetcable_buf);
proto_tree_add_item(tree, hf_packetcable_em_header_sequence_number, tvb, 46, 4, FALSE);
tvb_memcpy(tvb, packetcable_buf, 50, 18); packetcable_buf[18] = '\0';
proto_tree_add_text(tree, tvb, 50, 18, "Event Time: %s", packetcable_buf);