aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ppi-vector.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-ppi-vector.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-ppi-vector.c')
-rw-r--r--epan/dissectors/packet-ppi-vector.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-ppi-vector.c b/epan/dissectors/packet-ppi-vector.c
index ffb6c98f7f..6fcf481307 100644
--- a/epan/dissectors/packet-ppi-vector.c
+++ b/epan/dissectors/packet-ppi-vector.c
@@ -126,7 +126,7 @@ enum ppi_vector_type {
#define PPI_VECTOR_MASK_EXT 0x80000000 /* 31 */
/* There are currently only three vector flags.
- * These control the units/interpreration of a vector
+ * These control the units/interpretation of a vector
*/
#define PPI_VECTOR_VFLAGS_DEFINES_FORWARD 0x00000001
@@ -269,7 +269,7 @@ static expert_field ei_ppi_vector_present_bit = EI_INIT;
static expert_field ei_ppi_vector_length = EI_INIT;
-/* We want to abbreviate this field into a single line. Does so without any string maniuplation */
+/* We want to abbreviate this field into a single line. Does so without any string manipulation */
static void
annotate_vector_chars(guint32 chars, proto_tree *my_pt)
{
@@ -734,7 +734,7 @@ dissect_ppi_vector_v2(tvbuff_t *tvb, packet_info *pinfo, int offset, gint length
relativeto_str = " RelativeTo: Forward";
}
/*
- * vchars is another field that we want to pre-process simillar to vflags and for the same reasons.
+ * vchars is another field that we want to pre-process similar to vflags and for the same reasons.
* we perform separate length checks depending on if vector_flags is present (which would precede vector_chars)
*/
if ( ( (present & PPI_VECTOR_MASK_VFLAGS)) && (present & PPI_VECTOR_MASK_VCHARS) && length_remaining >= 8)
@@ -1045,7 +1045,7 @@ proto_register_ppi_vector(void)
"Specifies if the Vector flags bitfield is present", HFILL } },
{ &hf_ppi_vector_present_vchars,
- { "Vector chararacteristics", "ppi_vector.present.chars",
+ { "Vector characteristics", "ppi_vector.present.chars",
FT_BOOLEAN, 32, NULL, PPI_VECTOR_MASK_VCHARS,
"Specifies if the Vector chars bitfield is present", HFILL } },