|
From: Anders J. <and...@us...> - 2001-09-28 14:35:39
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
test.c 1.27 1.28=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Corrected parsing of bb_conn testcommand.
The diff of the modified file(s):
--- test.c 2001/09/10 12:24:10 1.27
+++ test.c 2001/09/28 14:35:38 1.28
@@ -450,8 +450,8 @@
if(!strncmp(cmd, "bb_conn ", 8)) {
char *p =3D cmd + 8;
=20=09=09
- for (i =3D 0; i < 6; i++) {
- bd[i] =3D strtoul(p, &p, 0);
+ for (i =3D 5; i >=3D 0; i--) {
+ bd[i] =3D strtoul(p, &p, 16);
printk("bb_conn read [%d] =3D 0x%x\n", i, bd[i]);
p=3Dp+1;
}
|