|
From: Gordon M. <gm...@us...> - 2001-03-21 19:38:22
|
The following file was modified in apps/bluetooth/btd:
Name Old version New version Comment
---- ----------- ----------- -------
btd.c 1.88.2.1 1.88.2.2=20=20=20=20=20=20=20=20
The accompanying log:
--If the HCIINQUIRY ioctl fails we just return now instead of exiting.
The diff of the modified file(s):
--- btd.c 2001/03/20 16:42:53 1.88.2.1
+++ btd.c 2001/03/21 19:38:19 1.88.2.2
@@ -2913,7 +2913,7 @@
if (ioctl(bt_cfd, HCIINQUIRY, inq_res) < 0)
{
perror("Inquiry");
- exit(1);
+ return;
}
=20=20=20=20=20
for (i =3D 0; i < inq_res->nbr_of_units; i++)
|