aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mp2t.c
diff options
context:
space:
mode:
authormoshekaplan <me@moshekaplan.com>2016-01-05 19:58:42 -0500
committerMichael Mann <mmann78@netscape.net>2016-01-08 20:04:56 +0000
commitcd7026951b2354cb633b51cd82d6de0a0f622f00 (patch)
tree98e01231a03392a988f8621a8cbc6f7553bce0ca /epan/dissectors/packet-mp2t.c
parentc1bcbb6eee97239be09d820ca3c16c46cf072fc6 (diff)
Fix a lot of typos and misspellings
Change-Id: I8512cfa1d424f82a873a0e0e1d22c7b075fdd7f3 Reviewed-on: https://code.wireshark.org/review/13069 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-mp2t.c')
-rw-r--r--epan/dissectors/packet-mp2t.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-mp2t.c b/epan/dissectors/packet-mp2t.c
index 49eac8d80e..0ffc5ab119 100644
--- a/epan/dissectors/packet-mp2t.c
+++ b/epan/dissectors/packet-mp2t.c
@@ -282,7 +282,7 @@ typedef struct mp2t_analysis_data {
/* This structure contains a tree containing data for the
* individual pid's, this is only used when packets are
- * processed sequencially.
+ * processed sequentially.
*/
wmem_tree_t *pid_table;
@@ -339,7 +339,7 @@ typedef struct pid_analysis_data {
typedef struct ts_analysis_data {
guint16 pid;
gint8 cc_prev; /* Previous CC number */
- guint8 skips; /* Skips between CCs max 14 */
+ guint8 skips; /* Skips between Ccs max 14 */
} ts_analysis_data_t;
@@ -473,7 +473,7 @@ mp2t_get_packet_length(tvbuff_t *tvb, guint offset, packet_info *pinfo,
if ( (pload_type == pid_pload_docsis && remaining_len < 4) ||
(pload_type == pid_pload_sect && remaining_len < 3) ||
(pload_type == pid_pload_pes && remaining_len < 5) ) {
- /* Not enough info to determine the size of the encapulated packet */
+ /* Not enough info to determine the size of the encapsulated packet */
/* Just add the fragment and we'll check out the length later */
return -1;
}
@@ -855,9 +855,9 @@ detect_cc_drops(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo,
gboolean detected_drop = FALSE;
guint32 skips = 0;
- /* The initial sequencial processing stage */
+ /* The initial sequential processing stage */
if (!pinfo->fd->flags.visited) {
- /* This is the sequencial processing stage */
+ /* This is the sequential processing stage */
pid_data = get_pid_analysis(mp2t_data, pid);
cc_prev = pid_data->cc_prev;