aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-08-24 08:00:25 +0200
committerAnders Broman <a.broman58@gmail.com>2017-08-24 13:52:55 +0000
commitcf6a3deae44c8ff8f5b6a21e590ab7956b24fd27 (patch)
treeec609b7f938b0dd95659be58c48f74c5c9d2d51c /epan
parentb9307c1ac86019ae94e190f6b195b9f55129a4d8 (diff)
GTP: fix wrong bitmap for gtp.ext_comm_flags_II_pmtsmi field
Issue reported by Sudarshan Chettri Bug: 14001 Change-Id: I03a37adb6e77201191f424b300fa917bf11afac4 Reviewed-on: https://code.wireshark.org/review/23188 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-gtp.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-gtp.c b/epan/dissectors/packet-gtp.c
index 1653dde5b6..c41bc04c02 100644
--- a/epan/dissectors/packet-gtp.c
+++ b/epan/dissectors/packet-gtp.c
@@ -260,8 +260,8 @@ static int hf_gtp_correlation_id = -1;
static int hf_gtp_earp_pvi = -1;
static int hf_gtp_earp_pl = -1;
static int hf_gtp_ext_comm_flags_uasi = -1;
-static int hf_gtp_ext_comm_flags_II_dtci = -1;
static int hf_gtp_ext_comm_flags_II_pnsi = -1;
+static int hf_gtp_ext_comm_flags_II_dtci = -1;
static int hf_gtp_ext_comm_flags_II_pmtsmi = -1;
static int hf_gtp_ext_comm_flags_II_spare = -1;
static int hf_gtp_earp_pci = -1;
@@ -9751,19 +9751,19 @@ proto_register_gtp(void)
FT_BOOLEAN, 8, NULL, 0x80,
NULL, HFILL}
},
- {&hf_gtp_ext_comm_flags_II_dtci,
- { "DTCI", "gtp.ext_comm_flags_II_dtci",
- FT_BOOLEAN, 8, NULL, 0x02,
- NULL, HFILL}
- },
{&hf_gtp_ext_comm_flags_II_pnsi,
{ "PNSI", "gtp.ext_comm_flags_II_pnsi",
FT_UINT8, BASE_DEC, NULL, 0x01,
NULL, HFILL}
},
+ {&hf_gtp_ext_comm_flags_II_dtci,
+ { "DTCI", "gtp.ext_comm_flags_II_dtci",
+ FT_BOOLEAN, 8, NULL, 0x02,
+ NULL, HFILL}
+ },
{&hf_gtp_ext_comm_flags_II_pmtsmi,
{ "PMTSMI", "gtp.ext_comm_flags_II_pmtsmi",
- FT_UINT8, BASE_DEC, NULL, 0x02,
+ FT_UINT8, BASE_DEC, NULL, 0x04,
NULL, HFILL}
},
{&hf_gtp_ext_comm_flags_II_spare,