summaryrefslogtreecommitdiff
path: root/epan
diff options
context:
space:
mode:
authorJakub Pawlowski <jpawlowski@google.com>2017-03-13 13:20:23 -0700
committerMichael Mann <mmann78@netscape.net>2017-03-13 23:14:31 +0000
commita6f7e16859b35d1d0b680eb04caabc82f7cc70e7 (patch)
treeb560154f501f606b059b2f093b1f167c03182b7a /epan
parent98558fd81cad9d578ea5085fe8465334e4b266fd (diff)
downloadwireshark-a6f7e16859b35d1d0b680eb04caabc82f7cc70e7.tar.gz
Bluetooth: "dublicates" -> "duplicates"
Change-Id: Ie52c6ef60c911d1e119c5b69de6f64a88b3433f3 Reviewed-on: https://code.wireshark.org/review/20534 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Michal Labedzki <michal.tomasz.labedzki@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-bthci_cmd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-bthci_cmd.c b/epan/dissectors/packet-bthci_cmd.c
index 858fca079b..49049286ad 100644
--- a/epan/dissectors/packet-bthci_cmd.c
+++ b/epan/dissectors/packet-bthci_cmd.c
@@ -314,7 +314,7 @@ static int hf_bthci_cmd_le_advts_filter_policy = -1;
static int hf_bthci_cmd_le_data_length = -1;
static int hf_bthci_cmd_le_advts_enable = -1;
static int hf_bthci_cmd_le_scan_enable = -1;
-static int hf_bthci_cmd_le_filter_dublicates = -1;
+static int hf_bthci_cmd_le_filter_duplicates = -1;
static int hf_bthci_cmd_le_scan_type = -1;
static int hf_bthci_cmd_le_scan_interval = -1;
static int hf_bthci_cmd_le_scan_window = -1;
@@ -3391,7 +3391,7 @@ dissect_le_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
case 0x000c: /* LE Set Scan Enable */
proto_tree_add_item(tree, hf_bthci_cmd_le_scan_enable, tvb, offset, 1, ENC_LITTLE_ENDIAN);
offset++;
- proto_tree_add_item(tree, hf_bthci_cmd_le_filter_dublicates, tvb, offset, 1, ENC_LITTLE_ENDIAN);
+ proto_tree_add_item(tree, hf_bthci_cmd_le_filter_duplicates, tvb, offset, 1, ENC_LITTLE_ENDIAN);
offset++;
break;
@@ -3820,7 +3820,7 @@ dissect_le_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
case 0x0042: /* LE Set Extended Scan Enable */
proto_tree_add_item(tree, hf_bthci_cmd_le_scan_enable, tvb, offset, 1, ENC_LITTLE_ENDIAN);
offset++;
- proto_tree_add_item(tree, hf_bthci_cmd_le_filter_dublicates, tvb, offset, 1, ENC_LITTLE_ENDIAN);
+ proto_tree_add_item(tree, hf_bthci_cmd_le_filter_duplicates, tvb, offset, 1, ENC_LITTLE_ENDIAN);
offset++;
item = proto_tree_add_item(tree, hf_bthci_cmd_le_scan_duration, tvb, offset, 2, ENC_LITTLE_ENDIAN);
proto_item_append_text(item, " (%g msec)", tvb_get_letohs(tvb, offset)*10.0);
@@ -5518,8 +5518,8 @@ proto_register_bthci_cmd(void)
FT_UINT8, BASE_HEX, VALS(cmd_boolean), 0x0,
NULL, HFILL }
},
- { &hf_bthci_cmd_le_filter_dublicates,
- { "Filter Dublicates", "bthci_cmd.le_filter_dublicates",
+ { &hf_bthci_cmd_le_filter_duplicates,
+ { "Filter Duplicates", "bthci_cmd.le_filter_duplicates",
FT_UINT8, BASE_HEX, VALS(cmd_boolean), 0x0,
NULL, HFILL }
},