|
From: Mattias A. <mat...@us...> - 2001-03-31 16:36:00
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
l2cap.c 1.95 1.96=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
don't do cfm to upper layers before setting c_result
The diff of the modified file(s):
--- l2cap.c 2001/03/30 11:59:20 1.95
+++ l2cap.c 2001/03/31 16:35:58 1.96
@@ -1176,8 +1176,8 @@
#ifdef CONFIG_BLUETOOTH_L2CAP_USE_TIMERS
disable_rtx(con);
#endif
- l2ca_disconnect_cfm(con);
con->c_result =3D RES_SUCCESS;
+ l2ca_disconnect_cfm(con);
l2ca_wakeup("l2cap_disconnect_rsp", con);
break;
=20=20=20=20=20=20=20=20
|