|
From: Peter K. <pk...@us...> - 2001-04-18 11:49:42
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
rfcomm.c 1.102 1.103=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Made it compile for user stack.
The diff of the modified file(s):
--- rfcomm.c 2001/04/17 16:57:47 1.102
+++ rfcomm.c 2001/04/18 11:49:42 1.103
@@ -1246,7 +1246,9 @@
Tell the tty that the link is down */
printk("RFCOMM control ch disconnected (remotely)\n");
send_ua(rfcomm, 0);
+#ifdef __KERNEL__
bt_unregister_rfcomm(rfcomm->line);
+#endif
} else {
rfcomm->dlci[tmp_dlci].state =3D DISCONNECTED;
send_ua(rfcomm, tmp_dlci);
|