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

Takanori Watanabe takawata at FreeBSD.org
Thu May 28 13:48:34 UTC 2020


Author: takawata
Date: Thu May 28 13:48:33 2020
New Revision: 361586
URL: https://svnweb.freebsd.org/changeset/base/361586

Log:
  Fix connection event message string (n->\n)
  
  PR: 246664
  Submitted by: Marc Veldman (marc at bumblngdork.com)
  Reported by:	Jose Luis Duran (jlduran at gmail.com)

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

Modified: head/usr.sbin/bluetooth/hccontrol/le.c
==============================================================================
--- head/usr.sbin/bluetooth/hccontrol/le.c	Thu May 28 13:19:41 2020	(r361585)
+++ head/usr.sbin/bluetooth/hccontrol/le.c	Thu May 28 13:48:33 2020	(r361586)
@@ -1078,7 +1078,7 @@ static void handle_le_connection_event(ng_hci_event_pk
 				"Supervision timeout: %dms\n",
 				 10 * le16toh(conn_event->supervision_timeout));
 			fprintf(stdout,
-				"Master clock accuracy: %sn",
+				"Master clock accuracy: %s\n",
 				hci_mc_accuracy2str(
 					conn_event->master_clock_accuracy));
 		}


More information about the svn-src-head mailing list