Return-Path: From: Luiz Augusto von Dentz To: linux-bluetooth@vger.kernel.org Subject: [PATCH v2 09/11] client: Fix command scan:clear Date: Thu, 14 Dec 2017 10:02:58 -0200 Message-Id: <20171214120300.20018-9-luiz.dentz@gmail.com> In-Reply-To: <20171214120300.20018-1-luiz.dentz@gmail.com> References: <20171214120300.20018-1-luiz.dentz@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: From: Luiz Augusto von Dentz Command clear shall clear all filters including DuplicateData. --- client/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client/main.c b/client/main.c index 7183ae478..04937bc4b 100644 --- a/client/main.c +++ b/client/main.c @@ -1414,6 +1414,7 @@ static void cmd_scan_filter_clear(int argc, char *argv[]) filtered_scan_uuids_len = 0; g_free(filtered_scan_transport); filtered_scan_transport = NULL; + filtered_scan_duplicate_data = false; if (check_default_ctrl() == FALSE) return; -- 2.13.6