aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tcap-persistentdata.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-02-26 04:42:26 +0000
committerBill Meier <wmeier@newsguy.com>2013-02-26 04:42:26 +0000
commit96a24cc79f7a32851cc2005603e32633389043a3 (patch)
tree62c91332176b091409c8f06937bbce734155981e /epan/tcap-persistentdata.c
parenta6e56df8b683bb696655c331f64f22abc8f36af4 (diff)
Fix spelling/typos found using a list of commonly misspelled words.
The misspellings were mostly in comments but some were in text strings visible to the user. svn path=/trunk/; revision=47899
Diffstat (limited to 'epan/tcap-persistentdata.c')
-rw-r--r--epan/tcap-persistentdata.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/tcap-persistentdata.c b/epan/tcap-persistentdata.c
index 189504b33c..7312fe5600 100644
--- a/epan/tcap-persistentdata.c
+++ b/epan/tcap-persistentdata.c
@@ -1078,11 +1078,11 @@ tcaphash_begin_matching(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
/* check if we have to create a new record or not */
/* if last request has been responded (response number is known)
and this request appears after last response (has bigger frame number)
- and last request occured after the timeout for repetition,
+ and last request occurred after the timeout for repetition,
or
if last request hasn't been responded (so number unknown)
and this request appears after last request (has bigger frame number)
- and this request occured after the timeout for message lost */
+ and this request occurred after the timeout for message lost */
if ( ( p_tcaphash_begincall->context->last_frame != 0
&& pinfo->fd->num > p_tcaphash_begincall->context->first_frame
&& (guint) pinfo->fd->abs_ts.secs > (guint)(p_tcaphash_begincall->context->begin_time.secs + gtcap_RepetitionTimeout)
@@ -1592,11 +1592,11 @@ tcaphash_ansi_matching(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
/* check if we have to create a new record or not */
/* if last request has been responded (response number in known)
and this request appears after last response (has bigger frame number)
- and last request occured after the timeout for repetition,
+ and last request occurred after the timeout for repetition,
or
if last request hasn't been responded (so number unknown)
and this request appears after last request (has bigger frame number)
- and this request occured after the timeout for message lost */
+ and this request occurred after the timeout for message lost */
if ( ( p_tcaphash_ansicall->context->last_frame != 0
&& pinfo->fd->num > p_tcaphash_ansicall->context->first_frame
&& (guint) pinfo->fd->abs_ts.secs > (guint)(p_tcaphash_ansicall->context->begin_time.secs + gtcap_RepetitionTimeout)