|
From: Anders J. <and...@us...> - 2002-02-25 14:38:05
|
The following files were modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
bnep.c 1.9 1.10=20=20=20=20=20=20=20=20=20=20=20=20
rfcomm.c 1.131 1.132=20=20=20=20=20=20=20=20=20=20=20
sdp.c 1.85 1.86=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* Corrected cut-and-paste mistake.
* Discovered that funcion isn't an english word! :)
The diff of the modified file(s):
--- bnep.c 25 Feb 2002 14:08:35 -0000 1.9
+++ bnep.c 25 Feb 2002 14:28:18 -0000 1.10
@@ -1322,7 +1322,7 @@
=20=09
/* If we weren't the initiator, we now send our configuration request. */
/* Fix l2cap->remote_mtu should be max BNEP_MTU??? */
- if (!l2ca_local_conf_done(con) && !con->conf_req_sent) {
+ if (!l2ca_local_conf_done(l2cap) && !l2cap->conf_req_sent) {
if (l2ca_config_req(l2cap, BNEP_MTU,=20
NULL, BNEP_FLUSH_TIMEOUT, 0)) {
D_ERR(__FUNCTION__": l2ca_config_req failed\n");
--- rfcomm.c 25 Feb 2002 14:08:36 -0000 1.131
+++ rfcomm.c 25 Feb 2002 14:28:19 -0000 1.132
@@ -911,7 +911,7 @@
}
=20
/* check if we received a pos response on a previous conf req */=20
- if (!l2ca_local_conf_done(con) && !con->conf_req_sent) {
+ if (!l2ca_local_conf_done(l2cap) && !l2cap->conf_req_sent) {
l2cap->local_mtu=3Dl2cap->remote_mtu;
=20
DSYS(FNC"Local l2cap mtu set to %d\n",=20
--- sdp.c 25 Feb 2002 14:08:37 -0000 1.85
+++ sdp.c 25 Feb 2002 14:28:19 -0000 1.86
@@ -526,7 +526,7 @@
}
=20
if(l2cap->current_state !=3D OPEN) {
- DSYS(__FUNTION__ ": Configuration not done yet\n");
+ DSYS(__FUNCTION__ ": Configuration not done yet\n");
}
=20
/* Find the connecting sdp_con */
|