aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorsake <sake@f5534014-38df-0310-8fa8-9805f1628bb7>2007-10-16 23:42:33 +0000
committersake <sake@f5534014-38df-0310-8fa8-9805f1628bb7>2007-10-16 23:42:33 +0000
commitc745d6a4aef85cc886ef809abee21d7566b2e303 (patch)
tree0f87cd34f039a68004ef24dc4d35b3653ff2f3fd /epan/dissectors
parent8dde000b92162356262f5b175cf6e6320037d125 (diff)
From tmiller@hcjbtech.org : Spelling error on GDS DB protocol dissector: "Buffer lenght:"
(recursively grepped through the source and corrected all occurences, even the ones just in comments) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23211 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-dtpt.c2
-rw-r--r--epan/dissectors/packet-fmp.c2
-rw-r--r--epan/dissectors/packet-gdsdb.c4
-rw-r--r--epan/dissectors/packet-ospf.c2
-rw-r--r--epan/dissectors/packet-rsl.c2
-rw-r--r--epan/dissectors/packet-ssl-utils.h2
6 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-dtpt.c b/epan/dissectors/packet-dtpt.c
index 8e380f61f5..3800616a08 100644
--- a/epan/dissectors/packet-dtpt.c
+++ b/epan/dissectors/packet-dtpt.c
@@ -1119,7 +1119,7 @@ proto_register_dtpt(void)
FT_UINT32, BASE_DEC, NULL, 0x0,
"Remote Address", HFILL }},
{ &hf_dtpt_sockaddr_length,
- { "Lenght", "dtpt.sockaddr.length",
+ { "Length", "dtpt.sockaddr.length",
FT_UINT16, BASE_DEC, NULL, 0x0,
"Socket Address Length", HFILL }},
{ &hf_dtpt_sockaddr_family,
diff --git a/epan/dissectors/packet-fmp.c b/epan/dissectors/packet-fmp.c
index 0665ded564..326035e789 100644
--- a/epan/dissectors/packet-fmp.c
+++ b/epan/dissectors/packet-fmp.c
@@ -528,7 +528,7 @@ dissect_InterpretVolMgtStuff(tvbuff_t *tvb, int offset, proto_tree *tree)
for(i=0;i<numdisks;i++){
offset = dissect_rpc_uint64(tvb, tree, hf_fmp_sig_offset, offset);
length = tvb_get_ntohl(tvb, offset);
- proto_tree_add_text(tree, tvb, offset, 4, "Lenght of List : %d", length);
+ proto_tree_add_text(tree, tvb, offset, 4, "Length of List : %d", length);
offset += 4;
for(j=0;j<length;j++){
diff --git a/epan/dissectors/packet-gdsdb.c b/epan/dissectors/packet-gdsdb.c
index b31d663fab..116c3bcc05 100644
--- a/epan/dissectors/packet-gdsdb.c
+++ b/epan/dissectors/packet-gdsdb.c
@@ -1531,7 +1531,7 @@ proto_register_gdsdb(void)
NULL, HFILL }
},
{ &hf_gdsdb_segment_length,
- { "Lenght", "gdsdb.segment.length",
+ { "Length", "gdsdb.segment.length",
FT_UINT32, BASE_DEC, NULL, 0x0,
NULL, HFILL }
},
@@ -1655,7 +1655,7 @@ proto_register_gdsdb(void)
},
/* gdsdb_slice_response */
{ &hf_gdsdb_sliceresponse_length,
- { "Lenght", "gdsdb.sliceresponse.length",
+ { "Length", "gdsdb.sliceresponse.length",
FT_UINT32, BASE_DEC, NULL, 0x0,
NULL, HFILL }
},
diff --git a/epan/dissectors/packet-ospf.c b/epan/dissectors/packet-ospf.c
index bf95c12bad..5509ddbcb0 100644
--- a/epan/dissectors/packet-ospf.c
+++ b/epan/dissectors/packet-ospf.c
@@ -1823,7 +1823,7 @@ dissect_ospf_lsa_mpls(tvbuff_t *tvb, int offset, proto_tree *tree,
if(((stlv_len % 4)!=0)) {
proto_tree_add_text(stlv_tree, tvb, stlv_offset+4, stlv_len,
- "Malformed Packet: Lenght must be N x 4 octets");
+ "Malformed Packet: Length must be N x 4 octets");
break;
}
diff --git a/epan/dissectors/packet-rsl.c b/epan/dissectors/packet-rsl.c
index ccf5368626..51ccbac2ce 100644
--- a/epan/dissectors/packet-rsl.c
+++ b/epan/dissectors/packet-rsl.c
@@ -2418,7 +2418,7 @@ dissect_rsl_ie_cmd_ind(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree,
}
- /* TODO Lenght wrong if extended */
+ /* TODO Length wrong if extended */
ti = proto_tree_add_text(tree, tvb,offset,2,"Command indicator IE");
ie_tree = proto_item_add_subtree(ti, ett_ie_cmd_ind);
diff --git a/epan/dissectors/packet-ssl-utils.h b/epan/dissectors/packet-ssl-utils.h
index 4114fe314f..e6d45f4a93 100644
--- a/epan/dissectors/packet-ssl-utils.h
+++ b/epan/dissectors/packet-ssl-utils.h
@@ -382,7 +382,7 @@ ssl_decrypt_pre_master_secret(SslDecryptSession*ssl_session,
@param decoder the stream decoder to be used
@param ct the content type of this ssl record
@param in a pinter to the ssl record to be decrypted
- @param inl the record lenght
+ @param inl the record length
@param out a pointer to the store for the decrypted data
@param outl the decrypted data len
@return 0 on success */