diff mbox series

[BlueZ,1/2] main.conf: Fix printing errors for valid options

Message ID 20230907194134.2242634-1-luiz.dentz@gmail.com (mailing list archive)
State Accepted
Commit 32daf644a4971d8757a2818a377d40fb6b709641
Headers show
Series [BlueZ,1/2] main.conf: Fix printing errors for valid options | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
tedd_an/CheckPatch success CheckPatch PASS
tedd_an/GitLint success Gitlint PASS
tedd_an/BuildEll success Build ELL PASS
tedd_an/BluezMake success Bluez Make PASS
tedd_an/MakeCheck success Bluez Make Check PASS
tedd_an/MakeDistcheck success Make Distcheck PASS
tedd_an/CheckValgrind success Check Valgrind PASS
tedd_an/CheckSmatch success CheckSparse PASS
tedd_an/bluezmakeextell success Make External ELL PASS
tedd_an/IncrementalBuild success Incremental Build PASS
tedd_an/ScanBuild success Scan Build PASS

Commit Message

Luiz Augusto von Dentz Sept. 7, 2023, 7:41 p.m. UTC
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(+)

Comments

bluez.test.bot@gmail.com Sept. 7, 2023, 9:20 p.m. UTC | #1
This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=782332

---Test result---

Test Summary:
CheckPatch                    PASS      0.97 seconds
GitLint                       PASS      0.71 seconds
BuildEll                      PASS      26.76 seconds
BluezMake                     PASS      775.48 seconds
MakeCheck                     PASS      11.57 seconds
MakeDistcheck                 PASS      155.78 seconds
CheckValgrind                 PASS      251.36 seconds
CheckSmatch                   PASS      340.71 seconds
bluezmakeextell               PASS      103.04 seconds
IncrementalBuild              PASS      1309.56 seconds
ScanBuild                     PASS      1018.30 seconds



---
Regards,
Linux Bluetooth
patchwork-bot+bluetooth@kernel.org Sept. 7, 2023, 11 p.m. UTC | #2
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 mbox series

Patch

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