From cac6a8452b63c96c30e705ad850136d2448a0890 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig=20Bj=C3=B8rlykke?= Date: Thu, 20 Oct 2022 08:13:09 +0200 Subject: [PATCH] h248: Add missing dot in H.248 protocol name Add the missing dot in H.248 protocol name and dissector table. Closes #18513 --- epan/dissectors/asn1/h248/packet-h248-template.c | 6 +++--- epan/dissectors/packet-h248.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/epan/dissectors/asn1/h248/packet-h248-template.c b/epan/dissectors/asn1/h248/packet-h248-template.c index 92be3df217..6b550a69f5 100644 --- a/epan/dissectors/asn1/h248/packet-h248-template.c +++ b/epan/dissectors/asn1/h248/packet-h248-template.c @@ -28,7 +28,7 @@ #include "packet-h248.h" #define PNAME "H.248 MEGACO" -#define PSNAME "H248" +#define PSNAME "H.248" #define PFNAME "h248" void proto_register_h248(void); @@ -908,7 +908,7 @@ static const value_string base_package_name_vals[] = { { 0x0027, "Intrusion Tones Q.1950 Annex A" }, { 0x0028, "Business Tones Q.1950 Annex A" }, { 0x0029, "Media Gateway Resource Congestion Handling H.248.10" }, /* H.248.10 */ - { 0x002a, "H245 package H248.12" }, /* H.248.12 */ + { 0x002a, "H245 package H.248.12" }, /* H.248.12 */ { 0x002b, "H323 bearer control package H.248.12" }, /* H.248.12 */ { 0x002c, "H324 package H.248.12" }, /* H.248.12 */ { 0x002d, "H245 command package H.248.12" }, /* H.248.12 */ @@ -2362,7 +2362,7 @@ void proto_register_h248(void) { expert_h248 = expert_register_protocol(proto_h248); expert_register_field_array(expert_h248, ei, array_length(ei)); - subdissector_table = register_dissector_table("h248.magic_num", "H248 Magic Num", proto_h248, FT_UINT32, BASE_HEX); + subdissector_table = register_dissector_table("h248.magic_num", "H.248 Magic Num", proto_h248, FT_UINT32, BASE_HEX); h248_module = prefs_register_protocol(proto_h248, NULL); prefs_register_bool_preference(h248_module, "ctx_info", diff --git a/epan/dissectors/packet-h248.c b/epan/dissectors/packet-h248.c index 8f644918c9..fdfc8c99eb 100644 --- a/epan/dissectors/packet-h248.c +++ b/epan/dissectors/packet-h248.c @@ -36,7 +36,7 @@ #include "packet-h248.h" #define PNAME "H.248 MEGACO" -#define PSNAME "H248" +#define PSNAME "H.248" #define PFNAME "h248" void proto_register_h248(void); @@ -1383,7 +1383,7 @@ static const value_string base_package_name_vals[] = { { 0x0027, "Intrusion Tones Q.1950 Annex A" }, { 0x0028, "Business Tones Q.1950 Annex A" }, { 0x0029, "Media Gateway Resource Congestion Handling H.248.10" }, /* H.248.10 */ - { 0x002a, "H245 package H248.12" }, /* H.248.12 */ + { 0x002a, "H245 package H.248.12" }, /* H.248.12 */ { 0x002b, "H323 bearer control package H.248.12" }, /* H.248.12 */ { 0x002c, "H324 package H.248.12" }, /* H.248.12 */ { 0x002d, "H245 command package H.248.12" }, /* H.248.12 */ @@ -7693,7 +7693,7 @@ void proto_register_h248(void) { expert_h248 = expert_register_protocol(proto_h248); expert_register_field_array(expert_h248, ei, array_length(ei)); - subdissector_table = register_dissector_table("h248.magic_num", "H248 Magic Num", proto_h248, FT_UINT32, BASE_HEX); + subdissector_table = register_dissector_table("h248.magic_num", "H.248 Magic Num", proto_h248, FT_UINT32, BASE_HEX); h248_module = prefs_register_protocol(proto_h248, NULL); prefs_register_bool_preference(h248_module, "ctx_info",