aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/README.heuristic2
-rw-r--r--epan/dissectors/packet-a21.c10
-rw-r--r--epan/dissectors/packet-btsdp.c2
-rw-r--r--epan/dissectors/packet-ncp2222.inc2
-rw-r--r--epan/timestats.c2
-rw-r--r--epan/timestats.h2
6 files changed, 10 insertions, 10 deletions
diff --git a/doc/README.heuristic b/doc/README.heuristic
index 83fabb3deb..02e8449efc 100644
--- a/doc/README.heuristic
+++ b/doc/README.heuristic
@@ -93,7 +93,7 @@ that it's not good enough to distinguish between two given protocols.
Note: The heuristic code in a dissector *must not* cause an exception
(before returning FALSE) as this will prevent following
- heuristic dissector handoffs. In practce, this normally means
+ heuristic dissector handoffs. In practice, this normally means
that a test should be done to verify that the required data is
available in the tvb before fetching from the tvb. (See the
example below).
diff --git a/epan/dissectors/packet-a21.c b/epan/dissectors/packet-a21.c
index 65d60a6bb5..f47364b786 100644
--- a/epan/dissectors/packet-a21.c
+++ b/epan/dissectors/packet-a21.c
@@ -94,7 +94,7 @@ static int hf_a21_mscid_market_id = -1;
static int hf_a21_mscid_switch_number = -1;
static int hf_a21_event = -1;
static int hf_a21_additional_event_info = -1;
-static int hf_a21_allowed_foward_link_message = -1;
+static int hf_a21_allowed_forward_link_message = -1;
static gint ett_a21 = -1;
@@ -479,7 +479,7 @@ dissect_a21_event(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, proto
offset++;
if (length>1) {
if (event_id == 7) {
- proto_tree_add_item(tree, hf_a21_allowed_foward_link_message, tvb, offset, 2, ENC_BIG_ENDIAN);
+ proto_tree_add_item(tree, hf_a21_allowed_forward_link_message, tvb, offset, 2, ENC_BIG_ENDIAN);
/*offset += 2;*/
}
else {
@@ -558,7 +558,7 @@ dissect_a21_ie_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *top_tree, p
ie_tree = proto_tree_add_subtree_format(tree, tvb, offset, 1 + length_len + length, ett_a21_ie, &ti,
"%s : ", val_to_str_const(ie_type, a21_element_type_vals, "Unknown"));
- /* Octet 1-element identifie*/
+ /* Octet 1-element identifier */
proto_tree_add_item(ie_tree, hf_a21_element_identifier, tvb, offset, 1, ENC_BIG_ENDIAN);
offset++;
proto_tree_add_item(ie_tree, hf_a21_gcsna_pdu_length, tvb, offset, length_len, ENC_BIG_ENDIAN);
@@ -799,8 +799,8 @@ void proto_register_a21(void)
FT_UINT16, BASE_DEC, VALS(a21_additional_event_info_vals), 0x0,
NULL, HFILL }
},
- { &hf_a21_allowed_foward_link_message,
- {"Allowed Forward Link Messages", "a21.allowed_foward_link_message",
+ { &hf_a21_allowed_forward_link_message,
+ {"Allowed Forward Link Messages", "a21.allowed_forward_link_message",
FT_UINT16, BASE_DEC, VALS(a21_additional_event_info_vals), 0x0,
NULL, HFILL }
},
diff --git a/epan/dissectors/packet-btsdp.c b/epan/dissectors/packet-btsdp.c
index 7158e88002..5f85b2c871 100644
--- a/epan/dissectors/packet-btsdp.c
+++ b/epan/dissectors/packet-btsdp.c
@@ -5123,7 +5123,7 @@ proto_register_btsdp(void)
NULL, HFILL }
},
{ &hf_hcrp_device_location,
- { "Sevice Location", "btsdp.hcrp.device_location",
+ { "Service Location", "btsdp.hcrp.device_location",
FT_STRING, BASE_NONE, NULL, 0,
NULL, HFILL }
},
diff --git a/epan/dissectors/packet-ncp2222.inc b/epan/dissectors/packet-ncp2222.inc
index 9c2fbc2eb2..9ff102d081 100644
--- a/epan/dissectors/packet-ncp2222.inc
+++ b/epan/dissectors/packet-ncp2222.inc
@@ -1157,7 +1157,7 @@ static const value_string nds_reply_errors[] = {
{ 0xffffff0c, "(-244) No Object Delete Rights" },
{ 0xffffff0b, "(-245) No Object Create Rights" },
{ 0xffffff0a, "(-246) No Property Delete Rights" },
- { 0xffffff09, "(-247) No Property Create Rigths" },
+ { 0xffffff09, "(-247) No Property Create Rights" },
{ 0xffffff08, "(-248) No Property Write Rights" },
{ 0xffffff07, "(-249) No Propery Read Rights" },
{ 0xffffff06, "(-250) Temp Remap" },
diff --git a/epan/timestats.c b/epan/timestats.c
index 399b433119..3fd252489e 100644
--- a/epan/timestats.c
+++ b/epan/timestats.c
@@ -1,6 +1,6 @@
/* timestats.c
* routines for time statistics
- * Copyrigth 2003 Lars Roland
+ * Copyright 2003 Lars Roland
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
diff --git a/epan/timestats.h b/epan/timestats.h
index 88aa6ab86e..884fb5b94f 100644
--- a/epan/timestats.h
+++ b/epan/timestats.h
@@ -1,6 +1,6 @@
/* timestats.h
* Routines and definitions for time statistics
- * Copyrigth 2003 Lars Roland
+ * Copyright 2003 Lars Roland
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>