--- android/system-emulator.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/system-emulator.c b/android/system-emulator.c index f1c6622..0966a02 100644 --- a/android/system-emulator.c +++ b/android/system-emulator.c @@ -139,17 +139,17 @@ static void system_socket_callback(int fd, uint32_t events, void *user_data) printf("Received %s\n", buf); - if (!strcmp(buf, "ctl.start=bluetoothd")) { + if (!strcmp(buf, "bluetooth.start=bluetoothd")) { if (daemon_pid > 0) return; ctl_start(); - } else if (!strcmp(buf, "ctl.start=bluetoothd-snoop")) { + } else if (!strcmp(buf, "bluetooth.start=bluetoothd-snoop")) { if (snoop_pid > 0) return; snoop_start(); - } else if (!strcmp(buf, "ctl.stop=bluetoothd-snoop")) { + } else if (!strcmp(buf, "bluetooth.stop=bluetoothd-snoop")) { if (snoop_pid > 0) snoop_stop(); } -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html