From 2e2e50011d0c6685a7e2f3dc1d777a19fb4b11e6 Mon Sep 17 00:00:00 2001 From: Kiran K Date: Thu, 25 Jan 2024 18:21:56 +0530 Subject: [PATCH] bap: Fix update of context Fix context getting updated with support_context. --- src/shared/bap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/bap.c b/src/shared/bap.c index d56911e6b..06cac5bb3 100644 --- a/src/shared/bap.c +++ b/src/shared/bap.c @@ -2628,7 +2628,7 @@ static void pacs_add_source_supported_context(struct bt_pacs *pacs, static void pacs_add_source_context(struct bt_pacs *pacs, uint16_t context) { - context |= pacs->supported_source_context_value; + context |= pacs->source_context_value; /* Check if context value needs updating */ if (context == pacs->source_context_value) -- 2.47.3