svn commit: r359449 - head/usr.sbin/bluetooth/hccontrol

Ed Maste emaste at FreeBSD.org
Mon Mar 30 17:45:49 UTC 2020


Author: emaste
Date: Mon Mar 30 17:38:13 2020
New Revision: 359449
URL: https://svnweb.freebsd.org/changeset/base/359449

Log:
  correct 'disble' typo in hccontrol
  
  PR:		245125
  Submitted by:	Marc Veldman
  MFC after:	1 week

Modified:
  head/usr.sbin/bluetooth/hccontrol/le.c

Modified: head/usr.sbin/bluetooth/hccontrol/le.c
==============================================================================
--- head/usr.sbin/bluetooth/hccontrol/le.c	Mon Mar 30 17:11:21 2020	(r359448)
+++ head/usr.sbin/bluetooth/hccontrol/le.c	Mon Mar 30 17:38:13 2020	(r359449)
@@ -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;


More information about the svn-src-head mailing list