aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAnthony Crawford <anthony.r.crawford@charter.com>2019-08-23 09:46:22 -0600
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2019-08-24 06:26:34 +0000
commit3f22907e8bba5acf44906fe5e56a89a737859e77 (patch)
tree069d02c3025b5ad0b9f07ce354018d30fab29f4a /epan
parent6bd541f969d5550bd35bd3aa53ff2bde6c56f12d (diff)
mpeg(dsmcc): Fixed range values
Fixed range values in message_discriminator_vals and rsrc_attribute_vals. Bug: 16015 Change-Id: Ib04b0be32fb8d58138913e643a38b95e64cdad7f Reviewed-on: https://code.wireshark.org/review/34344 Reviewed-by: Anders Broman <a.broman58@gmail.com> Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-mpeg-dsmcc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mpeg-dsmcc.c b/epan/dissectors/packet-mpeg-dsmcc.c
index 0a1e0617ed..c981d5f079 100644
--- a/epan/dissectors/packet-mpeg-dsmcc.c
+++ b/epan/dissectors/packet-mpeg-dsmcc.c
@@ -518,7 +518,7 @@ static const range_string dsmcc_un_sess_message_discriminator_vals[] = {
{ 0x01, 0x01, "Client and Network" },
{ 0x02, 0x02, "Server and Network" },
{ 0x03, 0x0f, "ISO/IEC 13818-6 Reserved" },
- { 0x04, 0xff, "Invalid"},
+ { 0x10, 0xff, "Invalid"},
{ 0, 0, NULL }
};
@@ -748,7 +748,7 @@ static const range_string dsmcc_un_sess_rsrc_attribute_vals[] = {
{ 0x02, 0x02, "Non-Mandatory Non-Negotiable" },
{ 0x03, 0x03, "Non-Mandatory Negotiable" },
{ 0x04, 0x0f, "Reserved"},
- { 0x05, 0xff, "Invalid"},
+ { 0x10, 0xff, "Invalid"},
{ 0, 0, NULL }
};