From c6c709490c5a38f7e45ef06843d30b0f8b40636a Mon Sep 17 00:00:00 2001 From: Michael Mann Date: Fri, 27 Oct 2017 20:09:19 -0400 Subject: Q931: Fix Q931_ISO_IEC_STANDARDIZED_CODING value It's typically masked with 0x60 without any bit shifting, so make the value reflect it Bug: 14116 Change-Id: I677c609a8e19a66ee557ac24c721ecb2312131a5 Reviewed-on: https://code.wireshark.org/review/24123 Petri-Dish: Michael Mann Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann --- epan/dissectors/packet-q931.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-q931.c b/epan/dissectors/packet-q931.c index 0fe44e8816..d8a4ba3dc4 100644 --- a/epan/dissectors/packet-q931.c +++ b/epan/dissectors/packet-q931.c @@ -609,7 +609,7 @@ static const value_string q931_repeat_indication_vals[] = { * ITU-standardized coding. */ #define Q931_ITU_STANDARDIZED_CODING 0x00 -#define Q931_ISO_IEC_STANDARDIZED_CODING 0x01 +#define Q931_ISO_IEC_STANDARDIZED_CODING 0x20 /* * Dissect a Segmented message information element. -- cgit v1.2.3