aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS2
-rw-r--r--packet-gtp.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index 320657ed80..ba974ca775 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1491,7 +1491,7 @@ Peter Fales <psfales [AT] lucent.com> {
}
Fritz Budiyanto <fritzb88 [AT] yahoo.com> {
- Fix for GTP Packet Transfer Command IE
+ Assorted GTP fixes
}
Jean-Baptiste Marchand <Jean-Baptiste.Marchand [AT] hsc.fr> {
diff --git a/packet-gtp.c b/packet-gtp.c
index 62aa59401d..04aa4657db 100644
--- a/packet-gtp.c
+++ b/packet-gtp.c
@@ -4,7 +4,7 @@
* Copyright 2001, Michal Melerowicz <michal.melerowicz@nokia.com>
* Nicolas Balkota <balkota@mac.com>
*
- * $Id: packet-gtp.c,v 1.47 2002/11/13 09:01:08 guy Exp $
+ * $Id: packet-gtp.c,v 1.48 2002/12/05 22:31:13 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -4855,6 +4855,7 @@ dissect_gtpv0(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
gtpv0_hdr.length = g_ntohs(gtpv0_hdr.length);
gtpv0_hdr.seq_no = g_ntohs(gtpv0_hdr.seq_no);
+ gtpv0_hdr.flow_label = g_ntohs(gtpv0_hdr.flow_label);
proto_tree_add_uint(gtpv0_tree, hf_gtpv0_message_type, tvb, 1, 1, gtpv0_hdr.message);
proto_tree_add_uint(gtpv0_tree, hf_gtpv0_length, tvb, 2, 2, gtpv0_hdr.length);
proto_tree_add_uint(gtpv0_tree, hf_gtpv0_seq_number, tvb, 4, 2, gtpv0_hdr.seq_no);