From d6a601f8d17968f1112da68f94c74ee69264ed76 Mon Sep 17 00:00:00 2001 From: Frederic Danis Date: Thu, 27 Jun 2013 14:45:58 +0200 Subject: [PATCH] hfp_hf_bluez5: Fix SDP record with correct features --- plugins/hfp_hf_bluez5.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/hfp_hf_bluez5.c b/plugins/hfp_hf_bluez5.c index 7c663b5c..40d8ce01 100644 --- a/plugins/hfp_hf_bluez5.c +++ b/plugins/hfp_hf_bluez5.c @@ -636,7 +636,8 @@ static const GDBusMethodTable profile_methods[] = { static void connect_handler(DBusConnection *conn, void *user_data) { - uint16_t features = HFP_SDP_HF_FEATURE_3WAY | + uint16_t features = HFP_SDP_HF_FEATURE_ECNR | + HFP_SDP_HF_FEATURE_3WAY | HFP_SDP_HF_FEATURE_CLIP | HFP_SDP_HF_FEATURE_REMOTE_VOLUME_CONTROL;