aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/nettrace_3gpp_32_423.c
diff options
context:
space:
mode:
authorРоман Донченко <dpb@corrigendum.ru>2020-10-11 02:42:05 +0300
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2020-10-11 08:35:55 +0000
commit69e1aa860bf4230be6576f8367db2c8595b4e7a3 (patch)
treedda930620de01e5af724199258d126c0f3f4e2ca /wiretap/nettrace_3gpp_32_423.c
parentd3f2fa401959a8541d8ad71e2890330c0e262cc9 (diff)
Fix many spelling errors
Diffstat (limited to 'wiretap/nettrace_3gpp_32_423.c')
-rw-r--r--wiretap/nettrace_3gpp_32_423.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/wiretap/nettrace_3gpp_32_423.c b/wiretap/nettrace_3gpp_32_423.c
index 16105f8415..b6efa44703 100644
--- a/wiretap/nettrace_3gpp_32_423.c
+++ b/wiretap/nettrace_3gpp_32_423.c
@@ -810,7 +810,7 @@ nettrace_parse_address(char* curr_pos, char* next_pos, gboolean is_src_addr/*SRC
}
/*
- * Opens an .xml file with Trace data formated according to 3GPP TS 32.423 and converts it to
+ * Opens an .xml file with Trace data formatted according to 3GPP TS 32.423 and converts it to
* an "Exported PDU type file with the entire xml file as the first "packet" appending the
* raw messages as subsequent packages to be dissected by wireshark.
*/
@@ -1021,7 +1021,7 @@ create_temp_pcapng_file(wtap *wth, int *err, gchar **err_info, nettrace_3gpp_32_
char *raw_msg_pos;
char* start_msg_tag_cont;
- /* Clear for each itteration */
+ /* Clear for each iteration */
exported_pdu_info.precense_flags = 0;
exported_pdu_info.ptype = OLD_PT_NONE;
@@ -1067,7 +1067,7 @@ create_temp_pcapng_file(wtap *wth, int *err, gchar **err_info, nettrace_3gpp_32_
*/
ms = 0;
curr_pos = strstr(start_msg_tag_cont, "changeTime");
- /* Check if we have the tag or if we pased the end of the current message */
+ /* Check if we have the tag or if we passed the end of the current message */
if ((curr_pos) && (curr_pos < next_msg_pos)) {
curr_pos = curr_pos + 12;
scan_found = sscanf(curr_pos, "%u.%u", &second, &ms);
@@ -1105,7 +1105,7 @@ create_temp_pcapng_file(wtap *wth, int *err, gchar **err_info, nettrace_3gpp_32_
* It might contain an address
*/
curr_pos = strstr(start_msg_tag_cont, "<initiator");
- /* Check if we have the tag or if we pased the end of the current message */
+ /* Check if we have the tag or if we passed the end of the current message */
if ((curr_pos) && (curr_pos < next_msg_pos)) {
curr_pos = curr_pos + 10;
next_pos = strstr(curr_pos, "</initiator>");
@@ -1121,7 +1121,7 @@ create_temp_pcapng_file(wtap *wth, int *err, gchar **err_info, nettrace_3gpp_32_
* It might contain an address
*/
curr_pos = strstr(start_msg_tag_cont, "<target");
- /* Check if we have the tag or if we pased the end of the current message */
+ /* Check if we have the tag or if we passed the end of the current message */
if ((curr_pos) && (curr_pos < next_msg_pos)) {
curr_pos = curr_pos + 7;
next_pos = strstr(curr_pos, "</target>");