aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sip.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/dissectors/packet-sip.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/dissectors/packet-sip.c')
-rw-r--r--epan/dissectors/packet-sip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-sip.c b/epan/dissectors/packet-sip.c
index 114df746ef..7a481a97a2 100644
--- a/epan/dissectors/packet-sip.c
+++ b/epan/dissectors/packet-sip.c
@@ -1002,7 +1002,7 @@ dissect_sip_uri(tvbuff_t *tvb, packet_info *pinfo _U_, gint start_offset,
/* Set uri start offset in case this was called directly */
uri_offsets->uri_start = current_offset;
- /* Check if it's realy a sip uri ( it might be a tel uri, parse that?) */
+ /* Check if it's really a sip uri ( it might be a tel uri, parse that?) */
tvb_find_guint8(tvb, current_offset, line_end_offset - current_offset, ':');
if (tvb_strneql(tvb, current_offset, "sip", 3) != 0)
return -1;
@@ -3074,7 +3074,7 @@ dissect_sip_common(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
}
/* We've finished writing to the info col for this SIP message
- * Set fence in case there is more than one (SIP)message in the frame
+ * Set fence in case there is more than one (SIP)message in the frame
*/
col_append_str(pinfo->cinfo, COL_INFO, " | ");
col_set_fence(pinfo->cinfo, COL_INFO);