aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2020-03-25 09:46:07 +0000
committerAnders Broman <a.broman58@gmail.com>2020-03-25 12:07:03 +0000
commit8baf0fd295a58a26564ad0db541dc9c32d85555b (patch)
treeffa4308cdc7d30b596318ef442c900996ad540e5
parent3d730f84fe42d7dc78af3f8313917cacb028c3b0 (diff)
fix typo found by lintian (mesage => message)
Change-Id: I51654f51b2affd2363966900be4d57824d1c9385 Reviewed-on: https://code.wireshark.org/review/36563 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-dec-dnart.c2
-rw-r--r--epan/dissectors/packet-mgcp.c4
-rw-r--r--epan/dissectors/packet-openflow_v4.c2
-rw-r--r--epan/dissectors/packet-openflow_v5.c2
-rw-r--r--epan/dissectors/packet-openflow_v6.c2
-rwxr-xr-xepan/dissectors/packet-udpcp.c2
6 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-dec-dnart.c b/epan/dissectors/packet-dec-dnart.c
index e560d343db..9ab4ab61f3 100644
--- a/epan/dissectors/packet-dec-dnart.c
+++ b/epan/dissectors/packet-dec-dnart.c
@@ -1175,7 +1175,7 @@ proto_register_dec_rt(void)
{
static hf_register_info hf[] = {
- /* Mesage header items */
+ /* Message header items */
{ &hf_dec_routing_flags,
{ "Routing flags", "dec_dna.flags",
FT_UINT8, BASE_HEX, NULL, 0x0,
diff --git a/epan/dissectors/packet-mgcp.c b/epan/dissectors/packet-mgcp.c
index 485693bd0b..ed4ea778dc 100644
--- a/epan/dissectors/packet-mgcp.c
+++ b/epan/dissectors/packet-mgcp.c
@@ -307,7 +307,7 @@ static void mgcp_raw_text_add(tvbuff_t *tvb, proto_tree *tree);
#define NUM_TIMESTATS 11
-static const value_string mgcp_mesage_type[] = {
+static const value_string mgcp_message_type[] = {
{ 0, "Overall"},
{ 1, "EPCF "},
{ 2, "CRCX "},
@@ -2743,7 +2743,7 @@ void proto_register_mgcp(void)
mgcp_tap = register_tap("mgcp");
- register_rtd_table(proto_mgcp, NULL, 1, NUM_TIMESTATS, mgcp_mesage_type, mgcpstat_packet, NULL);
+ register_rtd_table(proto_mgcp, NULL, 1, NUM_TIMESTATS, mgcp_message_type, mgcpstat_packet, NULL);
expert_mgcp = expert_register_protocol(proto_mgcp);
expert_register_field_array(expert_mgcp, ei, array_length(ei));
diff --git a/epan/dissectors/packet-openflow_v4.c b/epan/dissectors/packet-openflow_v4.c
index 96b1febfb2..74cddca687 100644
--- a/epan/dissectors/packet-openflow_v4.c
+++ b/epan/dissectors/packet-openflow_v4.c
@@ -4376,7 +4376,7 @@ dissect_openflow_message_v4(tvbuff_t *tvb, packet_info *pinfo, proto_tree *openf
dissect_openflow_switch_features_v4(tvb, pinfo, openflow_tree, offset, length);
break;
case OFPT_GET_CONFIG_REQUEST:
- /* mesage has no body */
+ /* message has no body */
break;
case OFPT_GET_CONFIG_REPLY:
case OFPT_SET_CONFIG:
diff --git a/epan/dissectors/packet-openflow_v5.c b/epan/dissectors/packet-openflow_v5.c
index 4863c38439..1374ec7fe0 100644
--- a/epan/dissectors/packet-openflow_v5.c
+++ b/epan/dissectors/packet-openflow_v5.c
@@ -5835,7 +5835,7 @@ dissect_openflow_message_v5(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
dissect_openflow_switch_features_v5(tvb, pinfo, tree, offset, length);
break;
case OFPT_GET_CONFIG_REQUEST:
- /* mesage has no body */
+ /* message has no body */
break;
case OFPT_GET_CONFIG_REPLY:
case OFPT_SET_CONFIG:
diff --git a/epan/dissectors/packet-openflow_v6.c b/epan/dissectors/packet-openflow_v6.c
index f3bd0ef466..b36fa5ede3 100644
--- a/epan/dissectors/packet-openflow_v6.c
+++ b/epan/dissectors/packet-openflow_v6.c
@@ -6543,7 +6543,7 @@ dissect_openflow_message_v6(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
dissect_openflow_switch_features_v6(tvb, pinfo, tree, offset, length);
break;
case OFPT_GET_CONFIG_REQUEST:
- /* mesage has no body */
+ /* message has no body */
break;
case OFPT_GET_CONFIG_REPLY:
case OFPT_SET_CONFIG:
diff --git a/epan/dissectors/packet-udpcp.c b/epan/dissectors/packet-udpcp.c
index 899448b4e7..fe5a372a9f 100755
--- a/epan/dissectors/packet-udpcp.c
+++ b/epan/dissectors/packet-udpcp.c
@@ -423,7 +423,7 @@ proto_register_udpcp(void)
{ &hf_udpcp_fragment_amount,
{ "Fragment Amount", "udpcp.fragment-amount", FT_UINT8, BASE_DEC,
- NULL, 0x0, "Total number of fragments of a mesage", HFILL }},
+ NULL, 0x0, "Total number of fragments of a message", HFILL }},
{ &hf_udpcp_fragment_number,
{ "Fragment Number", "udpcp.fragment-number", FT_UINT8, BASE_DEC,
NULL, 0x0, "Fragment number of current packet within msg. Starts at 0", HFILL }},