|
From: Peter K. <pk...@us...> - 2003-01-14 15:19:16
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Tag Comment
---- ----------- ----------- --- -------
test.c 1.37 1.38=20=20=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Made it compile with CONFIG_BLUETOOTH_UNPLUG_TEST enabled.
The diff of the modified file(s):
--- test.c 1 Aug 2002 16:19:29 -0000 1.37
+++ test.c 14 Jan 2003 15:19:03 -0000 1.38
@@ -490,6 +490,7 @@
=20
char_buf[3] =3D 0;
if(!strncmp(cmd, "bb_conn ", 8)) {
+ u8 class_of_dev[3] =3D { 0, 0, 0 };
char *p =3D cmd + 8;
=20
for (i =3D 5; i >=3D 0; i--) {
@@ -502,7 +503,7 @@
bd[5], bd[4], bd[3],
bd[2], bd[1], bd[0]);
=20
- l2cap_create_con(bd);
+ l2cap_create_con(bd, class_of_dev);
return lp_connect_req(bd);
}
else if(strncmp(cmd, "t ", 2) =3D=3D 0) {
|