From 6eba17bf803eb2f080781c40cbccbb4003f37f80 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 23 Dec 2013 16:08:10 +0200 Subject: [PATCH] android/AVDTP: Fix ignoring endpoint delay reporting The code was setting TRUE ignoring what the caller set. --- android/avdtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/avdtp.c b/android/avdtp.c index 3cf390f65..473e02b11 100644 --- a/android/avdtp.c +++ b/android/avdtp.c @@ -3280,7 +3280,7 @@ struct avdtp_local_sep *avdtp_register_sep(uint8_t type, uint8_t media_type, sep->ind = ind; sep->cfm = cfm; sep->user_data = user_data; - sep->delay_reporting = TRUE; + sep->delay_reporting = delay_reporting; DBG("SEP %p registered: type:%d codec:%d seid:%d", sep, sep->info.type, sep->codec, sep->info.seid); -- 2.47.3