1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-20 02:38:43 +00:00

correct 'disble' typo in hccontrol

PR:		245125
Submitted by:	Marc Veldman
MFC after:	1 week
This commit is contained in:
Ed Maste 2020-03-30 17:38:13 +00:00
parent 86c9b3f3a6
commit b4b880cb6d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=359449

View File

@ -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;