From 32daf644a4971d8757a2818a377d40fb6b709641 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 7 Sep 2023 12:36:39 -0700 Subject: [PATCH] main.conf: Fix printing errors for valid options This fixes the following errors: Unknown key RefreshDiscovery for group General Unknown key Encryption for group CSIS Fixes: https://github.com/bluez/bluez/issues/583 --- src/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.c b/src/main.c index 2134fcf75..b5a6f8e55 100644 --- a/src/main.c +++ b/src/main.c @@ -85,6 +85,7 @@ static const char *supported_options[] = { "Privacy", "JustWorksRepairing", "TemporaryTimeout", + "RefreshDiscovery", "Experimental", "KernelExperimental", "RemoteNameRequestRetryDelay", @@ -149,6 +150,7 @@ static const char *gatt_options[] = { static const char *csip_options[] = { "SIRK", + "Encryption", "Size", "Rank", NULL -- 2.47.3