|
From: Anders J. <and...@us...> - 2001-08-17 09:20:46
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
test.c 1.24 1.25=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* Reset dont_send_config after it is used.
The diff of the modified file(s):
--- test.c 2001/08/06 11:12:32 1.24
+++ test.c 2001/08/17 09:20:46 1.25
@@ -280,10 +280,17 @@
D_STATE("test_connect_cfm\n");
PRINTPSM(l2cap);
=20=09
+ if(status) {
+ D_STATE("Connect failed: Status %d\n", status);
+ return;
+ }
+=09
+
if (!l2ca_local_conf_done(l2cap)) {
if (dont_send_config_req) {
printk("Don't send back config_req...\n");
printk("Now waiting for initator to shutdown link...\n");
+ dont_send_config_req =3D 0;
return;
}
=20
@@ -336,6 +343,7 @@
if (dont_send_config_req) {
printk("Don't send back config_req...\n");
printk("Now waiting for initator to shutdown link...\n");
+ dont_send_config_req =3D 0;
return;
}
=20=09=09
|