aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-afp.c2
-rw-r--r--epan/dissectors/packet-bgp.c2
-rw-r--r--epan/dissectors/packet-bpdu.c4
-rw-r--r--epan/dissectors/packet-btavrcp.c2
-rw-r--r--epan/dissectors/packet-dbus.c8
-rw-r--r--epan/dissectors/packet-dcom-sysact.c8
-rw-r--r--epan/dissectors/packet-hazelcast.c2
-rw-r--r--epan/dissectors/packet-homeplug.c4
-rw-r--r--epan/dissectors/packet-ieee80211.c4
-rw-r--r--epan/dissectors/packet-ldp.c16
-rw-r--r--epan/dissectors/packet-llrp.c16
-rw-r--r--epan/dissectors/packet-mux27010.c2
-rw-r--r--epan/dissectors/packet-rlc-lte.c8
-rw-r--r--epan/dissectors/packet-scsi.c8
-rw-r--r--epan/dissectors/packet-ua3g.c12
15 files changed, 49 insertions, 49 deletions
diff --git a/epan/dissectors/packet-afp.c b/epan/dissectors/packet-afp.c
index 4a99f6c505..bfcbaa8c6c 100644
--- a/epan/dissectors/packet-afp.c
+++ b/epan/dissectors/packet-afp.c
@@ -4414,7 +4414,7 @@ dissect_spotlight(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint offs
tvb,
offset,
8,
- "Endianess: %s",
+ "Endianness: %s",
encoding == ENC_BIG_ENDIAN ?
"Big Endian" : "Litte Endian");
offset += 8;
diff --git a/epan/dissectors/packet-bgp.c b/epan/dissectors/packet-bgp.c
index 7f66235b2e..5c997ab166 100644
--- a/epan/dissectors/packet-bgp.c
+++ b/epan/dissectors/packet-bgp.c
@@ -4036,7 +4036,7 @@ proto_register_bgp(void)
{ "Parameter Length", "bgp.open.opt.param.len", FT_UINT8, BASE_DEC,
NULL, 0x0, "Length of the Parameter Value", HFILL }},
{ &hf_bgp_open_opt_param_auth,
- { "Authentification Data", "bgp.open.opt.param.auth", FT_BYTES, BASE_NONE,
+ { "Authentication Data", "bgp.open.opt.param.auth", FT_BYTES, BASE_NONE,
NULL, 0x0, "Deprecated", HFILL }},
{ &hf_bgp_open_opt_param_unknown,
{ "Unknown", "bgp.open.opt.param.unknown", FT_BYTES, BASE_NONE,
diff --git a/epan/dissectors/packet-bpdu.c b/epan/dissectors/packet-bpdu.c
index e27263f45c..152f34f5e9 100644
--- a/epan/dissectors/packet-bpdu.c
+++ b/epan/dissectors/packet-bpdu.c
@@ -1048,7 +1048,7 @@ dissect_bpdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
"Agreement Digest Format Id: %d",
(spt_agree_data & 0xf0) >> 4);
proto_tree_add_text(agreement_tree, tvb, spt_offset, 1,
- "Agreement Digest Format Capabilites: %d",
+ "Agreement Digest Format Capabilities: %d",
(spt_agree_data & 0x0f));
spt_offset += 1;
@@ -1058,7 +1058,7 @@ dissect_bpdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
"Agreement Digest Convention Id: %d",
(spt_agree_data & 0xf0) >> 4);
proto_tree_add_text(agreement_tree, tvb, spt_offset, 1,
- "Agreement Digest Convention Capabilites: %d",
+ "Agreement Digest Convention Capabilities: %d",
(spt_agree_data & 0x0f));
spt_offset += 1;
diff --git a/epan/dissectors/packet-btavrcp.c b/epan/dissectors/packet-btavrcp.c
index db88a8e754..e6ddbc5954 100644
--- a/epan/dissectors/packet-btavrcp.c
+++ b/epan/dissectors/packet-btavrcp.c
@@ -326,7 +326,7 @@ static const value_string opcode_vals[] = {
{ OPCODE_VENDOR_DEPENDANT, "Vendor dependent" },
{ OPCODE_UNIT, "Unit Info" },
{ OPCODE_SUBUNIT, "Subunit Info" },
- { OPCODE_PASSTHROUGH, "Pass Throught" },
+ { OPCODE_PASSTHROUGH, "Pass Through" },
{ 0, NULL }
};
diff --git a/epan/dissectors/packet-dbus.c b/epan/dissectors/packet-dbus.c
index ceefac7a03..2cc4945df2 100644
--- a/epan/dissectors/packet-dbus.c
+++ b/epan/dissectors/packet-dbus.c
@@ -38,7 +38,7 @@ void proto_reg_handoff_dbus(void);
static gboolean dbus_desegment = TRUE;
static int hf_dbus_hdr = -1;
-static int hf_dbus_hdr_endianess = -1;
+static int hf_dbus_hdr_endianness = -1;
static int hf_dbus_hdr_type = -1;
static int hf_dbus_hdr_flags = -1;
static int hf_dbus_hdr_version = -1;
@@ -428,7 +428,7 @@ dissect_dbus_hdr(tvbuff_t *tvb, dbus_info_t *dinfo, proto_tree *tree, int offset
ti = proto_tree_add_item(tree, hf_dbus_hdr, tvb, offset, 0, ENC_NA);
hdr_tree = proto_item_add_subtree(ti, ett_dbus_hdr);
- proto_tree_add_item(hdr_tree, hf_dbus_hdr_endianess, tvb, offset, 1, ENC_ASCII | ENC_NA);
+ proto_tree_add_item(hdr_tree, hf_dbus_hdr_endianness, tvb, offset, 1, ENC_ASCII | ENC_NA);
offset += 1;
type = tvb_get_guint8(tvb, offset);
@@ -586,8 +586,8 @@ proto_register_dbus(void)
{ &hf_dbus_hdr,
{ "Header", "dbus.header", FT_NONE, BASE_NONE, NULL, 0x00, NULL, HFILL }
},
- { &hf_dbus_hdr_endianess,
- { "Endianess Flag", "dbus.endianess", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL }
+ { &hf_dbus_hdr_endianness,
+ { "Endianness Flag", "dbus.endianness", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL }
},
{ &hf_dbus_hdr_type,
{ "Message Type", "dbus.type", FT_UINT8, BASE_DEC, VALS(message_type_vals), 0x00, NULL, HFILL }
diff --git a/epan/dissectors/packet-dcom-sysact.c b/epan/dissectors/packet-dcom-sysact.c
index d5131479ee..b8b699d1b1 100644
--- a/epan/dissectors/packet-dcom-sysact.c
+++ b/epan/dissectors/packet-dcom-sysact.c
@@ -132,7 +132,7 @@ static gint ett_typeszprivhdr = -1;
static int hf_typeszch = -1;
static int hf_typeszph = -1;
static int hf_typesz_ver = -1;
-static int hf_typesz_endianess = -1;
+static int hf_typesz_endianness = -1;
static int hf_typesz_commhdrlen = -1;
static int hf_typesz_filler = -1;
static int hf_typesz_buflen = -1;
@@ -213,7 +213,7 @@ dissect_TypeSzCommPrivHdr(tvbuff_t *tvb, gint offset, packet_info *pinfo,
hf_typesz_ver, NULL);
offset = dissect_dcom_BYTE(tvb, offset, pinfo, sub_tree, drep,
- hf_typesz_endianess, &endian);
+ hf_typesz_endianness, &endian);
if (endian == 0x10)
*drep = DREP_LITTLE_ENDIAN;
else
@@ -1307,8 +1307,8 @@ proto_register_ISystemActivator (void)
{ "PrivateHeader", "isystemactivator.actproperties.ts.hdr", FT_NONE, BASE_NONE, NULL, 0x0, NULL, HFILL }},
{ &hf_typesz_ver,
{ "Version", "isystemactivator.actproperties.ts.ver", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }},
- { &hf_typesz_endianess,
- { "Endianess", "isystemactivator.actproperties.ts.end", FT_UINT8, BASE_HEX, VALS(ts_endian_vals), 0x0, NULL, HFILL }},
+ { &hf_typesz_endianness,
+ { "Endianness", "isystemactivator.actproperties.ts.end", FT_UINT8, BASE_HEX, VALS(ts_endian_vals), 0x0, NULL, HFILL }},
{ &hf_typesz_commhdrlen,
{ "CommonHeaderLength", "isystemactivator.actproperties.ts.chl", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }},
{ &hf_typesz_filler,
diff --git a/epan/dissectors/packet-hazelcast.c b/epan/dissectors/packet-hazelcast.c
index 0083789569..4ea106e45a 100644
--- a/epan/dissectors/packet-hazelcast.c
+++ b/epan/dissectors/packet-hazelcast.c
@@ -457,7 +457,7 @@ void proto_register_hazelcast(void) {
{ "Hazelcast hdr value length", "hazelcast.hdr.valuelength", FT_UINT32, BASE_DEC, NULL, 0x0, "header value length", HFILL }
},
{ &hf_hazelcast_headerVersion,
- { "Hazelcast hdr version", "hazelcast.hdr.version", FT_UINT8, BASE_DEC, NULL, 0x0, "header verson", HFILL }
+ { "Hazelcast hdr version", "hazelcast.hdr.version", FT_UINT8, BASE_DEC, NULL, 0x0, "header version", HFILL }
},
{ &hf_hazelcast_operation,
{ "Hazelcast operation", "hazelcast.operation", FT_UINT8, BASE_DEC|BASE_EXT_STRING, &operationTypes_ext, 0x0, "operation", HFILL }
diff --git a/epan/dissectors/packet-homeplug.c b/epan/dissectors/packet-homeplug.c
index de4258c2bb..61004f1ce0 100644
--- a/epan/dissectors/packet-homeplug.c
+++ b/epan/dissectors/packet-homeplug.c
@@ -856,7 +856,7 @@ static void dissect_homeplug_loader(ptvcursor_t * cursor, packet_info * pinfo)
ptvcursor_add(cursor, hf_homeplug_loader_module_size, 4, ENC_BIG_ENDIAN);
break;
case HOMEPLUG_MID_GNVMP:
- col_set_str(pinfo->cinfo, COL_INFO, "Loader Get NVM Parametes");
+ col_set_str(pinfo->cinfo, COL_INFO, "Loader Get NVM Parameters");
ptvcursor_add(cursor, hf_homeplug_loader_gnvmp, 1, ENC_BIG_ENDIAN);
ptvcursor_add(cursor, hf_homeplug_loader_length, 2, ENC_BIG_ENDIAN);
if (length == 17) {
@@ -868,7 +868,7 @@ static void dissect_homeplug_loader(ptvcursor_t * cursor, packet_info * pinfo)
}
break;
case HOMEPLUG_MID_SNVMP:
- col_set_str(pinfo->cinfo, COL_INFO, "Loader Set NVM Parametes");
+ col_set_str(pinfo->cinfo, COL_INFO, "Loader Set NVM Parameters");
ptvcursor_add(cursor, hf_homeplug_loader_snvmp, 1, ENC_BIG_ENDIAN);
ptvcursor_add(cursor, hf_homeplug_loader_length, 2, ENC_BIG_ENDIAN);
if (length == 17)
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index 5f3be8e516..ddd3d31e70 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -722,7 +722,7 @@ static const value_string tag_num_vals[] = {
{ TAG_BSS_AVB_ADM_CAPACITY, "BSS Available Admission Capacity" },
{ TAG_IE_68_CONFLICT, "BSS AC Access Delay/WAPI Parameter Set" },
{ TAG_TIME_ADV, "Time Advertisement" },
- { TAG_RM_ENABLED_CAPABILITY, "RM Enabled Capabilites" },
+ { TAG_RM_ENABLED_CAPABILITY, "RM Enabled Capabilities" },
{ TAG_MULTIPLE_BSSID, "Multiple BSSID" },
{ TAG_20_40_BSS_CO_EX, "20/40 BSS Coexistence" },
{ TAG_20_40_BSS_INTOL_CH_REP, "20/40 BSS Intolerant Channel Report" }, /* IEEE P802.11n/D6.0 */
@@ -9276,7 +9276,7 @@ dissect_rm_enabled_capabilities_ie(packet_info *pinfo, proto_tree *tree,
if (tag_len != 5)
{
- expert_add_info_format(pinfo, ti_len, PI_MALFORMED, PI_ERROR, "RM Enabled Capabilites length %u wrong, must = 4", tag_len);
+ expert_add_info_format(pinfo, ti_len, PI_MALFORMED, PI_ERROR, "RM Enabled Capabilities length %u wrong, must = 4", tag_len);
return offset;
}
proto_item_append_text(ti, " (%d octets)", tag_len);
diff --git a/epan/dissectors/packet-ldp.c b/epan/dissectors/packet-ldp.c
index 8883872f3b..73f0589354 100644
--- a/epan/dissectors/packet-ldp.c
+++ b/epan/dissectors/packet-ldp.c
@@ -3460,11 +3460,11 @@ proto_register_ldp(void)
{ &hf_ldp_tlv_fec_vc_intparam_length,
{ "Length", "ldp.msg.tlv.fec.vc.intparam.length", FT_UINT8, BASE_DEC,
- NULL, 0x0, "VC FEC Interface Paramater Length", HFILL }},
+ NULL, 0x0, "VC FEC Interface Parameter Length", HFILL }},
{ &hf_ldp_tlv_fec_vc_intparam_mtu,
{ "MTU", "ldp.msg.tlv.fec.vc.intparam.mtu", FT_UINT16, BASE_DEC,
- NULL, 0x0, "VC FEC Interface Paramater MTU", HFILL }},
+ NULL, 0x0, "VC FEC Interface Parameter MTU", HFILL }},
{ &hf_ldp_tlv_fec_vc_intparam_tdmbps,
{ "BPS", "ldp.msg.tlv.fec.vc.intparam.tdmbps", FT_UINT32, BASE_DEC,
@@ -3472,7 +3472,7 @@ proto_register_ldp(void)
{ &hf_ldp_tlv_fec_vc_intparam_id,
{ "ID", "ldp.msg.tlv.fec.vc.intparam.id", FT_UINT8, BASE_HEX,
- VALS(fec_vc_interfaceparm), 0x0, "VC FEC Interface Paramater ID", HFILL }},
+ VALS(fec_vc_interfaceparm), 0x0, "VC FEC Interface Parameter ID", HFILL }},
{ &hf_ldp_tlv_fec_vc_intparam_maxcatmcells,
{ "Number of Cells", "ldp.msg.tlv.fec.vc.intparam.maxatm", FT_UINT16, BASE_DEC,
@@ -3532,7 +3532,7 @@ proto_register_ldp(void)
{ &hf_ldp_tlv_fec_vc_intparam_fcslen,
{ "FCS Length", "ldp.msg.tlv.fec.vc.intparam.fcslen", FT_UINT16, BASE_DEC,
- NULL, 0x0, "VC FEC Interface Paramater FCS Length", HFILL }},
+ NULL, 0x0, "VC FEC Interface Parameter FCS Length", HFILL }},
{ &hf_ldp_tlv_fec_vc_intparam_tdmopt_r,
{ "R Bit", "ldp.msg.tlv.fec.vc.intparam.tdmopt_r", FT_BOOLEAN, 16,
@@ -3844,11 +3844,11 @@ proto_register_ldp(void)
{ &hf_ldp_tlv_intparam_length,
{ "Length", "ldp.msg.tlv.intparam.length", FT_UINT8, BASE_DEC,
- NULL, 0x0, "VC FEC Interface Paramater Length", HFILL }},
+ NULL, 0x0, "VC FEC Interface Parameter Length", HFILL }},
{ &hf_ldp_tlv_intparam_mtu,
{ "MTU", "ldp.msg.tlv.intparam.mtu", FT_UINT16, BASE_DEC,
- NULL, 0x0, "VC FEC Interface Paramater MTU", HFILL }},
+ NULL, 0x0, "VC FEC Interface Parameter MTU", HFILL }},
{ &hf_ldp_tlv_intparam_tdmbps,
{ "BPS", "ldp.msg.tlv.intparam.tdmbps", FT_UINT32, BASE_DEC,
@@ -3856,7 +3856,7 @@ proto_register_ldp(void)
{ &hf_ldp_tlv_intparam_id,
{ "ID", "ldp.msg.tlv.intparam.id", FT_UINT8, BASE_HEX,
- VALS(fec_vc_interfaceparm), 0x0, "VC FEC Interface Paramater ID", HFILL }},
+ VALS(fec_vc_interfaceparm), 0x0, "VC FEC Interface Parameter ID", HFILL }},
{ &hf_ldp_tlv_intparam_maxcatmcells,
{ "Number of Cells", "ldp.msg.tlv.intparam.maxatm", FT_UINT16, BASE_DEC,
@@ -3916,7 +3916,7 @@ proto_register_ldp(void)
{ &hf_ldp_tlv_intparam_fcslen,
{ "FCS Length", "ldp.msg.tlv.intparam.fcslen", FT_UINT16, BASE_DEC,
- NULL, 0x0, "VC FEC Interface Paramater FCS Length", HFILL }},
+ NULL, 0x0, "VC FEC Interface Parameter FCS Length", HFILL }},
{ &hf_ldp_tlv_intparam_tdmopt_r,
{ "R Bit", "ldp.msg.tlv.intparam.tdmopt_r", FT_BOOLEAN, 16,
diff --git a/epan/dissectors/packet-llrp.c b/epan/dissectors/packet-llrp.c
index 2fe872aaa6..445c5925e0 100644
--- a/epan/dissectors/packet-llrp.c
+++ b/epan/dissectors/packet-llrp.c
@@ -302,11 +302,11 @@ static gint ett_llrp = -1;
static gint ett_llrp_param = -1;
/* Message Types */
-#define LLRP_TYPE_GET_READER_CAPABILITES 1
+#define LLRP_TYPE_GET_READER_CAPABILITIES 1
#define LLRP_TYPE_GET_READER_CONFIG 2
#define LLRP_TYPE_SET_READER_CONFIG 3
#define LLRP_TYPE_CLOSE_CONNECTION_RESPONSE 4
-#define LLRP_TYPE_GET_READER_CAPABILITES_RESPONSE 11
+#define LLRP_TYPE_GET_READER_CAPABILITiES_RESPONSE 11
#define LLRP_TYPE_GET_READER_CONFIG_RESPONSE 12
#define LLRP_TYPE_SET_READER_CONFIG_RESPONSE 13
#define LLRP_TYPE_CLOSE_CONNECTION 14
@@ -350,11 +350,11 @@ static gint ett_llrp_param = -1;
#define LLRP_TYPE_CUSTOM_MESSAGE 1023
static const value_string message_types[] = {
- { LLRP_TYPE_GET_READER_CAPABILITES, "Get Reader Capabilites" },
+ { LLRP_TYPE_GET_READER_CAPABILITIES, "Get Reader Capabilities" },
{ LLRP_TYPE_GET_READER_CONFIG, "Get Reader Config" },
{ LLRP_TYPE_SET_READER_CONFIG, "Set Reader Config" },
{ LLRP_TYPE_CLOSE_CONNECTION_RESPONSE, "Close Connection Response" },
- { LLRP_TYPE_GET_READER_CAPABILITES_RESPONSE, "Get Reader Capabilites Response" },
+ { LLRP_TYPE_GET_READER_CAPABILITIES_RESPONSE,"Get Reader Capabilities Response"},
{ LLRP_TYPE_GET_READER_CONFIG_RESPONSE, "Get Reader Config Response" },
{ LLRP_TYPE_SET_READER_CONFIG_RESPONSE, "Set Reader Config Response" },
{ LLRP_TYPE_CLOSE_CONNECTION, "Close Connection" },
@@ -420,7 +420,7 @@ static const value_string llrp_versions[] = {
static const value_string capabilities_request[] = {
{ LLRP_CAP_ALL, "All" },
{ LLRP_CAP_GENERAL_DEVICE, "General Device Capabilities" },
- { LLRP_CAP_LLRP, "LLRP Capabilites" },
+ { LLRP_CAP_LLRP, "LLRP Capabilities" },
{ LLRP_CAP_REGULATORY, "Regulatory Capabilities" },
{ LLRP_CAP_AIR_PROTOCOL, "Air Protocol LLRP Capabilities" },
{ 0, NULL }
@@ -1033,7 +1033,7 @@ static const value_string impinj_param_type[] = {
{ LLRP_IMPINJ_PARAM_TAG_INFORMATION, "Tag information" },
{ LLRP_IMPINJ_PARAM_FORKLIFT_CONFIGURATION, "Forklift configuration" },
{ LLRP_IMPINJ_PARAM_FORKLIFT_HEIGHT_THRESHOLD, "Forklift height threshold" },
- { LLRP_IMPINJ_PARAM_FORKLIFT_ZEROMOTION_TIME_THRESHOLD, "Forklift zero motion time treshold" },
+ { LLRP_IMPINJ_PARAM_FORKLIFT_ZEROMOTION_TIME_THRESHOLD, "Forklift zero motion time threshold" },
{ LLRP_IMPINJ_PARAM_FORKLIFT_COMPANION_BOARD_INFO, "Forklift companion board info" },
{ LLRP_IMPINJ_PARAM_GPI_DEBOUNCE_CONFIGURATION, "Gpi debounce configuration" },
{ LLRP_IMPINJ_PARAM_READER_TEMPERATURE, "Reader temperature" },
@@ -2393,7 +2393,7 @@ dissect_llrp_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
{
/* Simple cases just have normal TLV or TV parameters */
case LLRP_TYPE_CLOSE_CONNECTION_RESPONSE:
- case LLRP_TYPE_GET_READER_CAPABILITES_RESPONSE:
+ case LLRP_TYPE_GET_READER_CAPABILITIES_RESPONSE:
case LLRP_TYPE_ADD_ROSPEC:
case LLRP_TYPE_ADD_ROSPEC_RESPONSE:
case LLRP_TYPE_DELETE_ROSPEC_RESPONSE:
@@ -2449,7 +2449,7 @@ dissect_llrp_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
offset, 4, ENC_BIG_ENDIAN);
offset += 4;
break;
- case LLRP_TYPE_GET_READER_CAPABILITES:
+ case LLRP_TYPE_GET_READER_CAPABILITIES:
proto_tree_add_item(tree, hf_llrp_req_cap, tvb, offset, 1, ENC_NA);
offset++;
ends_with_parameters = TRUE;
diff --git a/epan/dissectors/packet-mux27010.c b/epan/dissectors/packet-mux27010.c
index 727bd38567..e8e0b59bc7 100644
--- a/epan/dissectors/packet-mux27010.c
+++ b/epan/dissectors/packet-mux27010.c
@@ -1074,7 +1074,7 @@ dissect_mux27010(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
NULL, mux27010_tree);
if (!frag_msg) { /* Not last packet of reassembled Message */
- g_snprintf(colInfoText, sizeof(colInfoText), "%s [Splitted Msg]", colInfoText);
+ g_snprintf(colInfoText, sizeof(colInfoText), "%s [Split Msg]", colInfoText);
}
if (new_tvb) { /* take it all */
diff --git a/epan/dissectors/packet-rlc-lte.c b/epan/dissectors/packet-rlc-lte.c
index 172fc36f7c..0a4df9a460 100644
--- a/epan/dissectors/packet-rlc-lte.c
+++ b/epan/dissectors/packet-rlc-lte.c
@@ -2989,13 +2989,13 @@ void proto_register_rlc_lte(void)
{ &hf_rlc_lte_um,
{ "UM",
"rlc-lte.um", FT_STRING, BASE_NONE, NULL, 0x0,
- "Unackowledged Mode", HFILL
+ "Unacknowledged Mode", HFILL
}
},
{ &hf_rlc_lte_um_header,
{ "UM Header",
"rlc-lte.um.header", FT_STRING, BASE_NONE, NULL, 0x0,
- "Unackowledged Mode Header", HFILL
+ "Unacknowledged Mode Header", HFILL
}
},
{ &hf_rlc_lte_um_fi,
@@ -3056,13 +3056,13 @@ void proto_register_rlc_lte(void)
{ &hf_rlc_lte_am,
{ "AM",
"rlc-lte.am", FT_STRING, BASE_NONE, NULL, 0x0,
- "Ackowledged Mode", HFILL
+ "Acknowledged Mode", HFILL
}
},
{ &hf_rlc_lte_am_header,
{ "AM Header",
"rlc-lte.am.header", FT_STRING, BASE_NONE, NULL, 0x0,
- "Ackowledged Mode Header", HFILL
+ "Acknowledged Mode Header", HFILL
}
},
{ &hf_rlc_lte_am_data_control,
diff --git a/epan/dissectors/packet-scsi.c b/epan/dissectors/packet-scsi.c
index 66ad5dd696..8769be627e 100644
--- a/epan/dissectors/packet-scsi.c
+++ b/epan/dissectors/packet-scsi.c
@@ -305,7 +305,7 @@ static int hf_scsi_log_ta_aif = -1;
static int hf_scsi_log_ta_fwf = -1;
static int hf_scsi_log_ta_wmicf = -1;
static int hf_scsi_log_ta_wmoa = -1;
-static int hf_scsi_sbc_treshold_exponent = -1;
+static int hf_scsi_sbc_threshold_exponent = -1;
static int hf_scsi_sbc_lbpu = -1;
static int hf_scsi_sbc_lbpws = -1;
static int hf_scsi_sbc_lbpws10 = -1;
@@ -2173,7 +2173,7 @@ dissect_scsi_evpd(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree,
break;
case SCSI_EVPD_LBP:
- proto_tree_add_item(evpd_tree, hf_scsi_sbc_treshold_exponent, tvb, offset, 1, ENC_BIG_ENDIAN);
+ proto_tree_add_item(evpd_tree, hf_scsi_sbc_threshold_exponent, tvb, offset, 1, ENC_BIG_ENDIAN);
offset += 1;
proto_tree_add_item(evpd_tree, hf_scsi_sbc_lbpu, tvb, offset, 1, ENC_NA);
@@ -5799,8 +5799,8 @@ proto_register_scsi(void)
{ &hf_scsi_log_ta_wmoa,
{"worm medium overwrite attempted", "scsi.log.ta.wmoa", FT_BOOLEAN, 8, NULL, 0x01,
NULL, HFILL}},
- { &hf_scsi_sbc_treshold_exponent,
- {"Treshold Exponent", "scsi_sbc.treshold_exponent", FT_UINT8, BASE_DEC, NULL, 0,
+ { &hf_scsi_sbc_threshold_exponent,
+ {"Threshold Exponent", "scsi_sbc.threshold_exponent", FT_UINT8, BASE_DEC, NULL, 0,
NULL, HFILL}},
{ &hf_scsi_sbc_lbpu,
{"LBPU", "scsi_sbc.lbpu", FT_BOOLEAN, 8, NULL, 0x80,
diff --git a/epan/dissectors/packet-ua3g.c b/epan/dissectors/packet-ua3g.c
index c2c57984c5..9459c66869 100644
--- a/epan/dissectors/packet-ua3g.c
+++ b/epan/dissectors/packet-ua3g.c
@@ -737,7 +737,7 @@ decode_ip_device_routing(proto_tree *tree _U_, tvbuff_t *tvb, packet_info *pinfo
{0x03, "Type Of Service"},
{0x04, "Compressor"},
{0x05, "Payload Concatenation (ms)"},
- {0x06, "Echo Cancelation Enabler"},
+ {0x06, "Echo Cancellation Enabler"},
{0x07, "Silence Suppression Enabler"},
{0x08, "802.1 Q User Priority"},
{0x09, "Reserved"},
@@ -1071,7 +1071,7 @@ decode_ip_device_routing(proto_tree *tree _U_, tvbuff_t *tvb, packet_info *pinfo
int i, parameter_length, parameter_id;
static const value_string str_parameter_id[] = {
- {0x00, "Remote MainCPU Server IP Adress"},
+ {0x00, "Remote MainCPU Server IP Address"},
{0x01, "Remote MainCPU Server Port"},
{0, NULL}
};
@@ -1085,7 +1085,7 @@ decode_ip_device_routing(proto_tree *tree _U_, tvbuff_t *tvb, packet_info *pinfo
if (parameter_length > 0) {
switch (parameter_id) {
- case 0x00: /* Remote MainCPU Server IP Adress */
+ case 0x00: /* Remote MainCPU Server IP Address */
{
ep_strbuf_append_printf(strbuf, "%d", tvb_get_guint8(tvb, offset + 2));
@@ -1261,7 +1261,7 @@ decode_ip_device_routing(proto_tree *tree _U_, tvbuff_t *tvb, packet_info *pinfo
int i, parameter_length, parameter_id;
static const value_string str_parameter_id[] = {
- {0x00, "Remote IP Adress "},
+ {0x00, "Remote IP Address "},
{0x01, "Remote UDP Port In "},
{0x02, "Remote UDP Port Out "},
{0x03, "Remote IP Address Out"},
@@ -1279,8 +1279,8 @@ decode_ip_device_routing(proto_tree *tree _U_, tvbuff_t *tvb, packet_info *pinfo
if (parameter_length > 0) {
switch (parameter_id) {
- case 0x00: /* Remote IP Adress - Not for start listening rtp */
- case 0x03: /* Remote IP Adress Out - Not for start listening rtp */
+ case 0x00: /* Remote IP Address - Not for start listening rtp */
+ case 0x03: /* Remote IP Address Out - Not for start listening rtp */
{
ep_strbuf_append_printf(strbuf, "%d", tvb_get_guint8(tvb, offset + 2));