From c6dac57dc66da0b37052d220c7e30f7a93dc4c02 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Tue, 16 Sep 2014 16:12:54 +0200 Subject: [PATCH] android/handsfree: Fix missing error response to AT+BLDN If AT+BLDN was badly formatted error response was not send to headset. --- android/handsfree.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/handsfree.c b/android/handsfree.c index 02e6ec830..d2f72640a 100644 --- a/android/handsfree.c +++ b/android/handsfree.c @@ -725,6 +725,8 @@ static void at_cmd_bldn(struct hfp_gw_result *result, enum hfp_gw_cmd_type type, case HFP_GW_CMD_TYPE_SET: break; } + + hfp_gw_send_result(device.gw, HFP_RESULT_ERROR); } static void at_cmd_bvra(struct hfp_gw_result *result, enum hfp_gw_cmd_type type, -- 2.47.3