From 7240dc63d3579b1432237a5df0740947b739d4ea Mon Sep 17 00:00:00 2001 From: Syam Sidhardhan Date: Thu, 12 Apr 2012 20:32:53 +0530 Subject: [PATCH] avrcp: Fix the response ctype of SetPlayerApplicationSettingValue Request ctype of "SetPlayerApplicationSettingValue" is CONTROL, so response should be ACCEPTED instead of STABLE. --- audio/avrcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/avrcp.c b/audio/avrcp.c index 6eb4bb1b0..fd0094b1a 100644 --- a/audio/avrcp.c +++ b/audio/avrcp.c @@ -792,7 +792,7 @@ static uint8_t avrcp_handle_set_player_value(struct avrcp_player *player, if (len) { pdu->params_len = 0; - return AVC_CTYPE_STABLE; + return AVC_CTYPE_ACCEPTED; } err: -- 2.47.3