Date: Tue, 26 Dec 2023 17:48:25 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: c327288e8e44 - main - bluetooth: fix comment in bluetooth.device.conf Message-ID: <202312261748.3BQHmPpN080512@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=c327288e8e44300f66f3f89c6fe40da28e84198c commit c327288e8e44300f66f3f89c6fe40da28e84198c Author: lherschi <lhersch@dssgmbh.de> AuthorDate: 2023-12-26 17:18:54 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2023-12-26 17:24:19 +0000 bluetooth: fix comment in bluetooth.device.conf The default for discoverable is 'NO' not 'YES'. This now matches the man page. Event: Advanced UNIX Programming Course (Fall'23) at NTHU. Reviewed by: imp, zlei Pull Request: https://github.com/freebsd/freebsd-src/pull/939 --- usr.sbin/bluetooth/hccontrol/bluetooth.device.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/bluetooth/hccontrol/bluetooth.device.conf b/usr.sbin/bluetooth/hccontrol/bluetooth.device.conf index 95b769bae9f3..c400a3bf2e50 100644 --- a/usr.sbin/bluetooth/hccontrol/bluetooth.device.conf +++ b/usr.sbin/bluetooth/hccontrol/bluetooth.device.conf @@ -61,8 +61,8 @@ # # Possible values: # -# NO or 0 do not scan for inquiry requests; -# YES or 1 scan for inquiry requests (default). +# NO or 0 do not scan for inquiry requests (default); +# YES or 1 scan for inquiry requests. # discoverable="NO"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202312261748.3BQHmPpN080512>