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.
This commit is contained in:
Luiz Augusto von Dentz 2013-07-29 17:04:35 +03:00 committed by Johan Hedberg
parent 01f7adca85
commit 78ec5c13c9

View File

@ -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)