aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-11-02 13:27:14 +0100
committerMichael Mann <mmann78@netscape.net>2016-11-02 14:02:46 +0000
commitdbd762ab1d057bdde46d97b1be5e21b91efa1889 (patch)
treee02179dd6efb8745d20f5c34003f53d79409ed7d
parent2a651cfc663b87dca4a526a71724b13fb45091cf (diff)
btatt: fix spelling typo found by lintian
Change-Id: I3fdc71e927bdb0d5408db46656c23b23dc31489a Reviewed-on: https://code.wireshark.org/review/18621 Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
-rw-r--r--epan/dissectors/packet-btatt.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/dissectors/packet-btatt.c b/epan/dissectors/packet-btatt.c
index 4bd6687ccb..d366f0b5fb 100644
--- a/epan/dissectors/packet-btatt.c
+++ b/epan/dissectors/packet-btatt.c
@@ -901,8 +901,8 @@ static int hf_btatt_ots_flags = -1;
static int hf_btatt_ots_flags_reserved = -1;
static int hf_btatt_ots_flags_object_deletion = -1;
static int hf_btatt_ots_flags_object_creation = -1;
-static int hf_btatt_ots_flags_change_occured_to_the_object_metadata = -1;
-static int hf_btatt_ots_flags_change_occured_to_the_object_contents = -1;
+static int hf_btatt_ots_flags_change_occurred_to_the_object_metadata = -1;
+static int hf_btatt_ots_flags_change_occurred_to_the_object_contents = -1;
static int hf_btatt_ots_flags_source_of_change = -1;
static int hf_btatt_ots_action_opcode = -1;
static int hf_btatt_ots_size = -1;
@@ -1713,8 +1713,8 @@ static const int *hfx_btatt_ots_flags[] = {
&hf_btatt_ots_flags_reserved,
&hf_btatt_ots_flags_object_deletion,
&hf_btatt_ots_flags_object_creation,
- &hf_btatt_ots_flags_change_occured_to_the_object_metadata,
- &hf_btatt_ots_flags_change_occured_to_the_object_contents,
+ &hf_btatt_ots_flags_change_occurred_to_the_object_metadata,
+ &hf_btatt_ots_flags_change_occurred_to_the_object_contents,
&hf_btatt_ots_flags_source_of_change,
NULL
};
@@ -14562,13 +14562,13 @@ proto_register_btatt(void)
FT_BOOLEAN, 8, NULL, 0x08,
NULL, HFILL}
},
- {&hf_btatt_ots_flags_change_occured_to_the_object_metadata,
- {"Change Occured to the Object Metadata", "btatt.ots.flags.change_occured_to_the_object_metadata",
+ {&hf_btatt_ots_flags_change_occurred_to_the_object_metadata,
+ {"Change Occurred to the Object Metadata", "btatt.ots.flags.change_occurred_to_the_object_metadata",
FT_BOOLEAN, 8, NULL, 0x04,
NULL, HFILL}
},
- {&hf_btatt_ots_flags_change_occured_to_the_object_contents,
- {"Change Occured to the Object Contents", "btatt.ots.flags.change_occured_to_the_object_contents",
+ {&hf_btatt_ots_flags_change_occurred_to_the_object_contents,
+ {"Change Occurred to the Object Contents", "btatt.ots.flags.change_occurred_to_the_object_contents",
FT_BOOLEAN, 8, NULL, 0x02,
NULL, HFILL}
},