From 30d42a4dc7af7c619b047844f8bb04c1a3a826c7 Mon Sep 17 00:00:00 2001 From: emaste Date: Mon, 30 Mar 2020 17:38:13 +0000 Subject: [PATCH] correct 'disble' typo in hccontrol PR: 245125 Submitted by: Marc Veldman MFC after: 1 week --- usr.sbin/bluetooth/hccontrol/le.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/bluetooth/hccontrol/le.c b/usr.sbin/bluetooth/hccontrol/le.c index 88ef75189e3..4e5257be2e2 100644 --- a/usr.sbin/bluetooth/hccontrol/le.c +++ b/usr.sbin/bluetooth/hccontrol/le.c @@ -306,7 +306,7 @@ int le_enable(int s, int argc, char *argv[]) set_event_mask(s, NG_HCI_EVENT_MASK_DEFAULT | NG_HCI_EVENT_MASK_LE); set_le_event_mask(s, NG_HCI_LE_EVENT_MASK_ALL); - } else if (strcasecmp(argv[0], "disble") == 0) + } else if (strcasecmp(argv[0], "disable") == 0) set_event_mask(s, NG_HCI_EVENT_MASK_DEFAULT); else return USAGE; -- 2.45.0