|
From: Mattias A. <mat...@us...> - 2001-03-30 12:49:08
|
The following file was modified in apps/bluetooth/btd:
Name Old version New version Comment
---- ----------- ----------- -------
btd.c 1.88 1.89=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
don't exit if inquiry fails
updated l2cap_ping function for usermode stack
The diff of the modified file(s):
--- btd.c 2001/03/20 12:13:17 1.88
+++ btd.c 2001/03/30 12:49:06 1.89
@@ -1455,7 +1455,7 @@
printf("Pinging bd : %02X:%02X:%02X:%02X:%02X:%02X\n",
tmp_bd[0], tmp_bd[1], tmp_bd[2],
tmp_bd[3], tmp_bd[4], tmp_bd[5]);
- l2ca_ping(tmp_bd);
+ l2ca_ping(tmp_bd, NULL, 0);
}
else if (sscanf(buf, "getinfo %x:%x:%x:%x:%x:%x %x",
&bd[0], &bd[1], &bd[2], &bd[3], &bd[4], &bd[5],=20
@@ -2906,7 +2906,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++)
|