svn commit: r360316 - stable/11/usr.sbin/bluetooth/hccontrol

Ed Maste emaste at FreeBSD.org
Sat Apr 25 15:44:26 UTC 2020


Author: emaste
Date: Sat Apr 25 15:44:25 2020
New Revision: 360316
URL: https://svnweb.freebsd.org/changeset/base/360316

Log:
  MFC r359449: correct 'disble' typo in hccontrol
  
  PR:		245125
  Submitted by:	Marc Veldman

Modified:
  stable/11/usr.sbin/bluetooth/hccontrol/le.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/usr.sbin/bluetooth/hccontrol/le.c
==============================================================================
--- stable/11/usr.sbin/bluetooth/hccontrol/le.c	Sat Apr 25 15:43:44 2020	(r360315)
+++ stable/11/usr.sbin/bluetooth/hccontrol/le.c	Sat Apr 25 15:44:25 2020	(r360316)
@@ -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-all mailing list