diff options
author | Bill Meier <wmeier@newsguy.com> | 2008-12-17 17:23:37 +0000 |
---|---|---|
committer | Bill Meier <wmeier@newsguy.com> | 2008-12-17 17:23:37 +0000 |
commit | a8f30cbca1b3c7831be55ba0f68e9207ae9704f4 (patch) | |
tree | d506f25dfc17f3054d84127c2731ad8db790ae2b /epan/dissectors/packet-kerberos.c | |
parent | 27808f5b828c45f98e7f38c522b4ace967a69a24 (diff) | |
download | wireshark-a8f30cbca1b3c7831be55ba0f68e9207ae9704f4.tar.gz wireshark-a8f30cbca1b3c7831be55ba0f68e9207ae9704f4.tar.bz2 wireshark-a8f30cbca1b3c7831be55ba0f68e9207ae9704f4.zip |
Fix some typos and spelling (mostly in text strings)
svn path=/trunk/; revision=27037
Diffstat (limited to 'epan/dissectors/packet-kerberos.c')
-rw-r--r-- | epan/dissectors/packet-kerberos.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-kerberos.c b/epan/dissectors/packet-kerberos.c index 303083e7ad..dd42446d7c 100644 --- a/epan/dissectors/packet-kerberos.c +++ b/epan/dissectors/packet-kerberos.c @@ -506,7 +506,7 @@ decrypt_krb5_data(proto_tree *tree, packet_info *pinfo, static krb5_data data = {0,0,NULL}; krb5_keytab_entry key; - /* dont do anything if we are not attempting to decrypt data */ + /* don't do anything if we are not attempting to decrypt data */ if(!krb_decrypt){ return NULL; } @@ -642,7 +642,7 @@ decrypt_krb5_data(proto_tree *tree, packet_info *pinfo, krb5_data data; enc_key_t *ek; - /* dont do anything if we are not attempting to decrypt data */ + /* don't do anything if we are not attempting to decrypt data */ if(!krb_decrypt){ return NULL; } @@ -831,7 +831,7 @@ decrypt_krb5_data(proto_tree *tree, packet_info *pinfo, struct des3_ctx ctx; - /* dont do anything if we are not attempting to decrypt data */ + /* don't do anything if we are not attempting to decrypt data */ if(!krb_decrypt){ return NULL; } @@ -1781,7 +1781,7 @@ static int dissect_krb5_address(proto_tree *tree, tvbuff_t *tvb, int offset, asn g_snprintf(address_str, 256, "%s", ip6_to_str((const struct e_in6_addr *)tvb_get_ptr(tvb, offset, INET6_ADDRLEN))); break; default: - proto_tree_add_text(tree, tvb, offset, len, "KRB Address: I dont know how to parse this type of address yet"); + proto_tree_add_text(tree, tvb, offset, len, "KRB Address: I don't know how to parse this type of address yet"); } |