|
From: Peter K. <pk...@us...> - 2001-04-19 10:32:05
|
The following files were modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
l2cap.c 1.100 1.101=20=20=20=20=20=20=20=20=20=20=20
l2cap_con.c 1.8 1.9=20=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* Renamed free_list() to free_con_list().
* Redefined FLAG_* defines to more sensible values.
The diff of the modified file(s):
--- l2cap.c 2001/04/18 14:25:30 1.100
+++ l2cap.c 2001/04/19 10:31:34 1.101
@@ -361,7 +361,7 @@
}
#endif
=20
- free_list();
+ free_con_list();
remove_all_upper();
=20
#ifdef __CRIS__
--- l2cap_con.c 2001/04/19 10:29:14 1.8
+++ l2cap_con.c 2001/04/19 10:31:34 1.9
@@ -130,7 +130,7 @@
}
=20
void=20
-free_list(void)
+free_con_list(void)
{
D_CON(__FUNCTION__ ": Freeing connection list\n");
while (con_list.count)
@@ -550,7 +550,7 @@
show_list();
remove_rcid(5);
show_list();
- free_list();
+ free_con_list();
show_list();
/* ... */
}
|