Message ID | 20230907194134.2242634-1-luiz.dentz@gmail.com |
---|---|
State | New |
Headers | show |
Series | [BlueZ,1/2] main.conf: Fix printing errors for valid options | expand |
Hello: This series was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Thu, 7 Sep 2023 12:41:33 -0700 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > This fixes the following errors: > > Unknown key RefreshDiscovery for group General > Unknown key Encryption for group CSIS > > [...] Here is the summary with links: - [BlueZ,1/2] main.conf: Fix printing errors for valid options https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=32daf644a497 - [BlueZ,2/2] main.conf: Fix documention of CSIS.Encrypt https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=3294c42c9677 You are awesome, thank you!
diff --git a/src/main.c b/src/main.c index 2134fcf752cf..b5a6f8e5562f 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
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> 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(+)