aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-evs.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2022-10-26 19:41:21 +0000
committerUli Heilmeier <uh@heilmeier.eu>2022-10-30 09:37:49 +0000
commit0b9edb2299df34feb9772726ddb710c9008251b2 (patch)
tree40188f97cbf93445fad7480869457f3b738e6086 /epan/dissectors/packet-evs.c
parent9504b54bc1f90635fdaf7eaaafba320854655d70 (diff)
evs: fix typo for evs_d_bits_t0_values
should be { 0x6, "NB 24.4 kbps" } instead of the current { 0x6, "Not used" } According to Table A.3 of 3gpp TS 26445 Reported by Massimiliano Agnoletti Close: #18550
Diffstat (limited to 'epan/dissectors/packet-evs.c')
-rw-r--r--epan/dissectors/packet-evs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-evs.c b/epan/dissectors/packet-evs.c
index 79abd34150..3ce150d9cf 100644
--- a/epan/dissectors/packet-evs.c
+++ b/epan/dissectors/packet-evs.c
@@ -98,7 +98,7 @@ static const value_string evs_d_bits_t0_values[] = {
{ 0x3, "NB 9.6 kbps" },
{ 0x4, "NB 13.2 kbps" },
{ 0x5, "NB 16.4 kbps" },
- { 0x6, "Not used" },
+ { 0x6, "NB 24.4 kbps" },
{ 0x7, "Not used" },
{ 0x8, "Not used" },
{ 0x9, "Not used" },