--- android/pan.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/android/pan.c b/android/pan.c index 67c7556..67b62f2 100644 --- a/android/pan.c +++ b/android/pan.c @@ -471,8 +471,10 @@ static int set_forward_delay(void) int fd, ret; fd = open(FORWARD_DELAY_PATH, O_RDWR); - if (fd < 0) + if (fd < 0) { + error("open forward delay path : %s", strerror(errno)); return -errno; + } ret = write(fd, "0", sizeof("0")); close(fd); @@ -728,7 +730,7 @@ bool bt_pan_register(const bdaddr_t *addr) } err = bnep_init(); - if (err) { + if (err < 0) { error("bnep init failed"); bt_adapter_remove_record(rec->handle); return false; @@ -736,6 +738,7 @@ bool bt_pan_register(const bdaddr_t *addr) err = register_nap_server(); if (err < 0) { + error("Failed to register NAP"); bt_adapter_remove_record(rec->handle); bnep_cleanup(); return false; -- 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