From 78ec5c13c9305e35bdf7e30918ae9484e538806c Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 29 Jul 2013 17:04:35 +0300 Subject: [PATCH] audio/AVRCP: Fix not setting browsing feature in CT record The record already contain the additional protocol containing the browsing channel but the feature is not set as it is supposed to. --- profiles/audio/avrcp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/profiles/audio/avrcp.c b/profiles/audio/avrcp.c index b2135c537..32b96158a 100644 --- a/profiles/audio/avrcp.c +++ b/profiles/audio/avrcp.c @@ -270,7 +270,8 @@ static sdp_record_t *avrcp_ct_record(void) uint16_t feat = ( AVRCP_FEATURE_CATEGORY_1 | AVRCP_FEATURE_CATEGORY_2 | AVRCP_FEATURE_CATEGORY_3 | - AVRCP_FEATURE_CATEGORY_4 ); + AVRCP_FEATURE_CATEGORY_4 | + AVRCP_FEATURE_BROWSING); record = sdp_record_alloc(); if (!record) -- 2.47.3