aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2014-10-30 14:16:06 -0400
committerMichael Mann <mmann78@netscape.net>2014-10-30 19:51:42 +0000
commit3d9b35fab46812a4c718c0cbaa06ddd6f01f9e61 (patch)
tree091b6afca6ab7aaa5c54f356f38b9090354dd1a2
parenta683dd3edfd91c5d4089fcf279d23ad8560ddec0 (diff)
Fix a typo: Unidirected -> Undirected
As reported in https://ask.wireshark.org/questions/37462/possible-mistake-in-bluetooth-low-energy-hci-event-type Change-Id: Ia6217531208b00c52c89bcb279cbbe67b5163e96 Reviewed-on: https://code.wireshark.org/review/5004 Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--epan/dissectors/packet-bthci_cmd.c6
-rw-r--r--epan/dissectors/packet-bthci_evt.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-bthci_cmd.c b/epan/dissectors/packet-bthci_cmd.c
index 5aef3b8a31..4d589ca505 100644
--- a/epan/dissectors/packet-bthci_cmd.c
+++ b/epan/dissectors/packet-bthci_cmd.c
@@ -1732,10 +1732,10 @@ static const value_string cmd_flow_ctrl_mode[] = {
};
static const value_string cmd_le_advertising_types[] = {
- { 0x00, "Connectable Unidirected Advertising" },
+ { 0x00, "Connectable Undirected Advertising" },
{ 0x01, "Connectable Directed Advertising" },
- { 0x02, "Scannable Unidirected Advertising" },
- { 0x03, "Non-Connectable Unidirected Advertising" },
+ { 0x02, "Scannable Undirected Advertising" },
+ { 0x03, "Non-Connectable Undirected Advertising" },
{ 0, NULL }
};
diff --git a/epan/dissectors/packet-bthci_evt.c b/epan/dissectors/packet-bthci_evt.c
index 4947f1ea08..1e58d76a95 100644
--- a/epan/dissectors/packet-bthci_evt.c
+++ b/epan/dissectors/packet-bthci_evt.c
@@ -857,10 +857,10 @@ static const value_string evt_le_meta_subevent[] = {
};
static const value_string evt_le_advertising_evt_types[] = {
- { 0x00, "Connectable Unidirected Advertising" },
+ { 0x00, "Connectable Undirected Advertising" },
{ 0x01, "Connectable Directed Advertising" },
- { 0x02, "Scannable Unidirected Advertising" },
- { 0x03, "Non-Connectable Unidirected Advertising" },
+ { 0x02, "Scannable Undirected Advertising" },
+ { 0x03, "Non-Connectable Undirected Advertising" },
{ 0x04, "Scan Response" },
{ 0, NULL }
};