aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gtp.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-02-04 10:28:06 -0500
committerPascal Quantin <pascal.quantin@gmail.com>2014-02-04 15:42:01 +0000
commit953c3ef517231994b5228c1fddb7c62202579d02 (patch)
tree3c9e5b821996505324a5a3340864550de6cac391 /epan/dissectors/packet-gtp.c
parent53404776be11d66574c4849ddfb7dd10f63f8854 (diff)
Fix dissection of GTP MM Context RAND field.
As suggested by Lükő Bálint to fix bug #9722. Change-Id: I177f7632a0936f105b1acff5e7c20bcce2328957 Reviewed-on: https://code.wireshark.org/review/109 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-gtp.c')
-rw-r--r--epan/dissectors/packet-gtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-gtp.c b/epan/dissectors/packet-gtp.c
index 9faad3b73c..44ea74ea98 100644
--- a/epan/dissectors/packet-gtp.c
+++ b/epan/dissectors/packet-gtp.c
@@ -3955,7 +3955,7 @@ decode_quintuplet(tvbuff_t * tvb, int offset, proto_tree * tree, guint16 count)
ext_tree_quint = proto_item_add_subtree(te_quint, ett_gtp_quint);
- proto_tree_add_text(ext_tree_quint, tvb, offset + q_offset, 16, "RAND: %s", tvb_bytes_to_ep_str(tvb, offset, 16));
+ proto_tree_add_text(ext_tree_quint, tvb, offset + q_offset, 16, "RAND: %s", tvb_bytes_to_ep_str(tvb, offset + q_offset, 16));
q_offset = q_offset + 16;
xres_len = tvb_get_guint8(tvb, offset + q_offset);
proto_tree_add_text(ext_tree_quint, tvb, offset + q_offset, 1, "XRES length: %u", xres_len);