From: Peter K. <pk...@us...> - 2001-05-23 15:09:19
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- rfcomm.c 1.109 1.110=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Return errorvalue in rfcomm_disconnect_req() if connection is found. The diff of the modified file(s): --- rfcomm.c 2001/05/02 15:50:50 1.109 +++ rfcomm.c 2001/05/23 15:09:18 1.110 @@ -776,11 +776,12 @@ { rfcomm_con *rfcomm; s32 tmp; + D_CTRL("rfcomm_disconnect_req %d\n", line); if (!(rfcomm =3D &rfcomm_con_list[line])) { D_ERR("rfcomm_disconnect_req : no rfcomm con\n"); - return; + return -EINVAL; } =20 tmp =3D get_connected_dlci(rfcomm); |