aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bthci_cmd.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-10-26 22:06:41 +0200
committerMichael Mann <mmann78@netscape.net>2016-10-26 23:23:46 +0000
commit5c82f910a6f421b6ee2dac2fc4c6a51c9ed505b8 (patch)
tree993887025a9fcd3bd4ebb1766fb00c9cb825ecfa /epan/dissectors/packet-bthci_cmd.c
parent4e31c0c61b7fc38022d82a189953e8b0e4cb8978 (diff)
bthci_cmd: fix spelling typo found by lintian
Change-Id: I6ebc828eb7eafd3ca41275a9b0b9b45a0994a7d3 Reviewed-on: https://code.wireshark.org/review/18493 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-bthci_cmd.c')
-rw-r--r--epan/dissectors/packet-bthci_cmd.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/dissectors/packet-bthci_cmd.c b/epan/dissectors/packet-bthci_cmd.c
index d6d8448543..8f784b0b0e 100644
--- a/epan/dissectors/packet-bthci_cmd.c
+++ b/epan/dissectors/packet-bthci_cmd.c
@@ -333,8 +333,8 @@ static int hf_bthci_cmd_plaintext_data = -1;
static int hf_bthci_cmd_random_number = -1;
static int hf_bthci_cmd_encrypted_diversifier = -1;
static int hf_bthci_cmd_le_long_term_key = -1;
-static int hf_bthci_cmd_rx_freqency = -1;
-static int hf_bthci_cmd_tx_freqency = -1;
+static int hf_bthci_cmd_rx_frequency = -1;
+static int hf_bthci_cmd_tx_frequency = -1;
static int hf_bthci_cmd_test_data_length = -1;
static int hf_bthci_cmd_test_packet_payload = -1;
static int hf_bthci_cmd_parameter = -1;
@@ -3224,13 +3224,13 @@ dissect_le_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
break;
case 0x001d: /* LE Receiver Test */
- item = proto_tree_add_item(tree, hf_bthci_cmd_rx_freqency, tvb, offset, 1, ENC_LITTLE_ENDIAN);
+ item = proto_tree_add_item(tree, hf_bthci_cmd_rx_frequency, tvb, offset, 1, ENC_LITTLE_ENDIAN);
proto_item_append_text(item, " (%d MHz)", 2402 + 2*tvb_get_guint8(tvb, offset));
offset++;
break;
case 0x001e: /* LE Transmitter Test */
- item = proto_tree_add_item(tree, hf_bthci_cmd_tx_freqency, tvb, offset, 1, ENC_LITTLE_ENDIAN);
+ item = proto_tree_add_item(tree, hf_bthci_cmd_tx_frequency, tvb, offset, 1, ENC_LITTLE_ENDIAN);
proto_item_append_text(item, " (%d MHz)", 2402 + 2*tvb_get_guint8(tvb, offset));
offset++;
proto_tree_add_item(tree, hf_bthci_cmd_test_data_length, tvb, offset, 1, ENC_LITTLE_ENDIAN);
@@ -5051,13 +5051,13 @@ proto_register_bthci_cmd(void)
FT_BYTES, BASE_NONE, NULL, 0x0,
NULL, HFILL }
},
- { &hf_bthci_cmd_rx_freqency,
- { "Rx Frequency", "bthci_cmd.rx_freqency",
+ { &hf_bthci_cmd_rx_frequency,
+ { "Rx Frequency", "bthci_cmd.rx_frequency",
FT_UINT8, BASE_HEX, NULL, 0x0,
NULL, HFILL }
},
- { &hf_bthci_cmd_tx_freqency,
- { "Tx Frequency", "bthci_cmd.tx_freqency",
+ { &hf_bthci_cmd_tx_frequency,
+ { "Tx Frequency", "bthci_cmd.tx_frequency",
FT_UINT8, BASE_HEX, NULL, 0x0,
NULL, HFILL }
},