aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Mathieson <martin.mathieson@keysight.com>2020-04-04 11:06:40 +0100
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2020-04-04 10:34:27 +0000
commitd9c5c59f50502ca54d16f894b7d163ac01973e5f (patch)
treec82285c500a3818c4a3a8eca4134986d99ebd201
parent6c7583fc9308808819c5f42046df04f67519be1f (diff)
EISS: Fix a typo in range_string (Application Id)
Change-Id: If0f7052067e5ad6932360ce29d584d997ee87c91 Reviewed-on: https://code.wireshark.org/review/36693 Petri-Dish: Martin Mathieson <martin.r.mathieson@googlemail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
-rw-r--r--epan/dissectors/packet-eiss.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-eiss.c b/epan/dissectors/packet-eiss.c
index 3ffdbdc6fc..d4319a5822 100644
--- a/epan/dissectors/packet-eiss.c
+++ b/epan/dissectors/packet-eiss.c
@@ -93,9 +93,10 @@ static const value_string eiss_descriptor_values[] = {
{ 0, NULL }
};
+/* ETSI TS 101 812 - DVB-MHP Specification section 10.5 */
static const range_string application_id_values[] = {
{ 0x0000, 0x3fff, "Unsigned Application" },
- { 0x4000, 0x3fff, "Signed Application" },
+ { 0x4000, 0x7fff, "Signed Application" },
{ 0x8000, 0xfffd, "Reserved by DVB" },
{ 0xfffe, 0xfffe, "Wildcard for signed applications of an organisation" },
{ 0xffff, 0xffff, "Wildcard for all applications of an organisation" },