aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2016-11-02 21:03:44 -0400
committerMichael Mann <mmann78@netscape.net>2016-11-03 02:30:50 +0000
commit79b4a05bef50d8413bc6422372ee8b341156c26c (patch)
treefed37dd5e8187ae082ccac9329c2b0e8e0ea1b41
parent1f6c338c487897fab16e95ff5a84fa416c631c37 (diff)
Fix lintian found spelling error "splitted" -> "split"
Change-Id: I4b00ef460ae1792cd6f14856493f7a58ab8e0b9a Reviewed-on: https://code.wireshark.org/review/18645 Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--epan/dissectors/packet-gmr1_bcch.c4
-rw-r--r--epan/dissectors/packet-s7comm.c8
-rw-r--r--ui/export_object_smb.c2
3 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-gmr1_bcch.c b/epan/dissectors/packet-gmr1_bcch.c
index 9cee738781..9d5bfd2535 100644
--- a/epan/dissectors/packet-gmr1_bcch.c
+++ b/epan/dissectors/packet-gmr1_bcch.c
@@ -305,8 +305,8 @@ typedef struct {
guint16 MCC;
guint16 MNC;
guint16 LAC;
- guint8 MSC_ID; /* splitted version of LAC */
- guint16 Spot_Beam_ID; /* splitted version of LAC */
+ guint8 MSC_ID; /* split version of LAC */
+ guint16 Spot_Beam_ID; /* split version of LAC */
} Seg3A_LAI_t;
typedef struct {
diff --git a/epan/dissectors/packet-s7comm.c b/epan/dissectors/packet-s7comm.c
index 92592dc755..e76ded5cac 100644
--- a/epan/dissectors/packet-s7comm.c
+++ b/epan/dissectors/packet-s7comm.c
@@ -3332,7 +3332,7 @@ s7comm_decode_plc_controls_updownload(tvbuff_t *tvb,
} else if (rosctr == S7COMM_ROSCTR_ACK_DATA) {
if (plength > 8) {
/* If uploading from a PLC, the response has a string with the length
- * of the complete module in bytes, which maybe transferred/splitted into many PDUs.
+ * of the complete module in bytes, which maybe transferred/split into many PDUs.
* On a NC file upload, there are no such fields.
*/
len = tvb_get_guint8(tvb, offset);
@@ -4084,7 +4084,7 @@ s7comm_decode_ud_cpu_alarm_query_response(tvbuff_t *tvb,
proto_tree_add_item(msg_item_tree, hf_s7comm_data_transport_size, tvb, offset, 1, ENC_BIG_ENDIAN);
offset += 1;
/* As with ALARM_S it's only possible to send one alarm description in a single response telegram,
- * they are splitted into many telegrams. Therefore the complete length field is set to 0xffff.
+ * they are split into many telegrams. Therefore the complete length field is set to 0xffff.
* To reuse the following dissect-loop, the remaining length is set to zero.
*/
complete_length = tvb_get_ntohs(tvb, offset);
@@ -5824,7 +5824,7 @@ proto_register_s7comm (void)
"Length following blocklength string in bytes", HFILL }},
{ &hf_s7comm_data_blockcontrol_upl_lenstring,
{ "Blocklength", "s7comm.param.blockcontrol.upl_lenstring", FT_STRING, BASE_NONE, NULL, 0x0,
- "Length of the complete uploadblock in bytes, maybe splitted into many PDUs", HFILL }},
+ "Length of the complete uploadblock in bytes, may be split into many PDUs", HFILL }},
{ &hf_s7comm_data_blockcontrol_functionstatus,
{ "Function Status", "s7comm.param.blockcontrol.functionstatus", FT_UINT8, BASE_HEX, NULL, 0x0,
"0=no error, 1=more data, 2=error", HFILL }},
@@ -5973,7 +5973,7 @@ proto_register_s7comm (void)
NULL, HFILL }},
{ &hf_s7comm_cpu_alarm_query_completelen,
{ "Complete data length", "s7comm.alarm.query.complete_length", FT_UINT32, BASE_DEC, NULL, 0x0,
- "Complete data length (with ALARM_S this is 0xffff, as they might be splitted into many telegrams)", HFILL }},
+ "Complete data length (with ALARM_S this is 0xffff, as they might be split into many telegrams)", HFILL }},
{ &hf_s7comm_cpu_alarm_query_datasetlen,
{ "Length of dataset", "s7comm.alarm.query.dataset_length", FT_UINT8, BASE_DEC, NULL, 0x0,
NULL, HFILL }},
diff --git a/ui/export_object_smb.c b/ui/export_object_smb.c
index ca22f8bef3..4ccd1c07f2 100644
--- a/ui/export_object_smb.c
+++ b/ui/export_object_smb.c
@@ -172,7 +172,7 @@ insert_chunk(active_file *file, export_object_entry_t *entry, const smb_eo_t *
continue;
}
/* 4. data chunk is inside the free chunk */
- /* -> free chunk is splitted into two */
+ /* -> free chunk is split into two */
if (chunk_offset>current_free_chunk->start_offset && chunk_end_offset<current_free_chunk->end_offset) {
new_free_chunk = (free_chunk *)g_malloc(sizeof(free_chunk));
new_free_chunk->start_offset = chunk_end_offset + 1;