|
From: Mattias A. <mat...@us...> - 2001-08-21 14:40:51
|
The following file was modified in apps/bluetooth/experimental:
Name Old version New version Comment
---- ----------- ----------- -------
bttest.c 1.17 1.18=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* simply forward rest of string when typing upt <string>
The diff of the modified file(s):
--- bttest.c 2001/08/21 10:17:34 1.17
+++ bttest.c 2001/08/21 14:40:50 1.18
@@ -406,18 +406,9 @@
#ifdef CONFIG_BLUETOOTH_UNPLUG_TEST
else if (strncmp(buf, "upt", 3) =3D=3D 0)
{
- if (sscanf(buf+4, "t %d", &i) =3D=3D 1)
- {
- syslog(LOG_INFO, "testcommand : %s", buf + 4);
bt_testcmd(bt_cfd, buf+4);
}
- else
- {
- /* fixme */
- }
- }
#endif
-
else if (sscanf(buf, "getinfo %x:%x:%x:%x:%x:%x %x",
&tmp[0], &tmp[1], &tmp[2], &tmp[3], &tmp[4], &tmp[5],=20
&tmp[6]) =3D=3D 7)
|