summaryrefslogtreecommitdiff
path: root/epan/conversation_table.c
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 /epan/conversation_table.c
parentb14bf98c06dbf1324c63dee633a025d251391601 (diff)
downloadwireshark-a379ac74d27a094cd89b0fc0f5196c46052f5a9f.tar.gz
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 'epan/conversation_table.c')
-rw-r--r--epan/conversation_table.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/conversation_table.c b/epan/conversation_table.c
index bd39b824f2..44f5a75217 100644
--- a/epan/conversation_table.c
+++ b/epan/conversation_table.c
@@ -594,7 +594,7 @@ add_conversation_table_data_with_conv_id(
port1 = dst_port;
}
- /* if we dont have any entries at all yet */
+ /* if we don't have any entries at all yet */
if (ch->conv_array == NULL) {
ch->conv_array = g_array_sized_new(FALSE, FALSE, sizeof(conv_item_t), 10000);
@@ -617,7 +617,7 @@ add_conversation_table_data_with_conv_id(
}
}
- /* if we still dont know what conversation this is it has to be a new one
+ /* if we still don't know what conversation this is it has to be a new one
and we have to allocate it and append it to the end of the list */
if (conv_item == NULL) {
conv_key_t *new_key;
@@ -722,7 +722,7 @@ add_hostlist_table_data(conv_hash_t *ch, const address *addr, guint32 port, gboo
/* XXX should be optimized to allocate n extra entries at a time
instead of just one */
- /* if we dont have any entries at all yet */
+ /* if we don't have any entries at all yet */
if(ch->conv_array==NULL){
ch->conv_array=g_array_sized_new(FALSE, FALSE, sizeof(hostlist_talker_t), 10000);
ch->hashtable = g_hash_table_new_full(host_hash,
@@ -742,7 +742,7 @@ add_hostlist_table_data(conv_hash_t *ch, const address *addr, guint32 port, gboo
}
}
- /* if we still dont know what talker this is it has to be a new one
+ /* if we still don't know what talker this is it has to be a new one
and we have to allocate it and append it to the end of the list */
if(talker==NULL){
host_key_t *new_key;