aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/ldap
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-09-16 11:25:17 -0400
committerBill Meier <wmeier@newsguy.com>2014-09-16 15:31:58 +0000
commita379ac74d27a094cd89b0fc0f5196c46052f5a9f (patch)
tree662a038427bf7c82167703e4a3838a87dda0400b /asn1/ldap
parentb14bf98c06dbf1324c63dee633a025d251391601 (diff)
Fix spelling: cant-->can't, wont-->won't, etc
Change-Id: Ia6c3e7a25615bf8e052c3bacf096d76df775c9c2 Reviewed-on: https://code.wireshark.org/review/4126 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'asn1/ldap')
-rw-r--r--asn1/ldap/packet-ldap-template.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/asn1/ldap/packet-ldap-template.c b/asn1/ldap/packet-ldap-template.c
index 03d806a314..12fd428de0 100644
--- a/asn1/ldap/packet-ldap-template.c
+++ b/asn1/ldap/packet-ldap-template.c
@@ -624,7 +624,7 @@ dissect_ldap_AssertionValue(gboolean implicit_tag, tvbuff_t *tvb, int offset, as
* Special case these attributes and decode them more nicely.
*
* Add more special cases as required to prettify further
- * (there cant be that many ones that are truly interesting)
+ * (there can't be that many ones that are truly interesting)
*/
if(attributedesc_string && !strncmp("DomainSid", attributedesc_string, 9)){
tvbuff_t *sid_tvb;
@@ -680,7 +680,7 @@ dissect_ldap_AssertionValue(gboolean implicit_tag, tvbuff_t *tvb, int offset, as
* for LDAP, and using that to determine how to display
* attribute values and assertion values?
*
- * -- I dont think there are full schemas available that describe the
+ * -- I don't think there are full schemas available that describe the
* interesting cases i.e. AD -- ronnie
*/
str=tvb_get_ptr(tvb, offset, len);
@@ -814,7 +814,7 @@ ldap_match_call_response(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gu
/* this a a request - add it to the unmatched list */
- /* check that we dont already have one of those in the
+ /* check that we don't already have one of those in the
unmatched list and if so remove it */
lcr.messageId=messageId;
@@ -822,7 +822,7 @@ ldap_match_call_response(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gu
if(lcrp){
g_hash_table_remove(ldap_info->unmatched, lcrp);
}
- /* if we cant reuse the old one, grab a new chunk */
+ /* if we can't reuse the old one, grab a new chunk */
if(!lcrp){
lcrp=wmem_new0(wmem_file_scope(), ldap_call_response_t);
}
@@ -1829,7 +1829,7 @@ this_was_not_sasl:
/* check that length makes sense */
get_ber_length(tvb, 1, &ldap_len, &ind);
- /* dont check ind since indefinite length is never used for ldap (famous last words)*/
+ /* don't check ind since indefinite length is never used for ldap (famous last words)*/
if(ldap_len<2){
goto this_was_not_normal_ldap;
}