summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorMichael Nosthoff <committed@heine.so>2020-07-24 16:03:06 +0200
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2020-07-27 16:12:12 -0700
commit4a452057f0245355bd2dda477bc5634a1561258e (patch)
tree60834ab5f9d447fa7f9be4042a795c6d19274a50 /src/main.c
parent81a0868b082ccad7752c8d768addc48aca108f64 (diff)
downloadbluez-4a452057f0245355bd2dda477bc5634a1561258e.tar.gz
main: add missing comma after AlwaysPairable
Commit 1880b2990866 ("core: Add AlwaysPairable to main.conf") added a new key to supported_options but didn't add a comma. This leads to the following error message on startup if the key 'PairableTimeout' is pesent: Unknown key PairableTimeout for group General in /etc/bluetooth/main.conf This probably also leads to ignoring the setting. Fixes: 1880b2990866 ("core: Add AlwaysPairable to main.conf")
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index ec7a9fbd7..2c083de67 100644
--- a/src/main.c
+++ b/src/main.c
@@ -79,7 +79,7 @@ static const char *supported_options[] = {
"Name",
"Class",
"DiscoverableTimeout",
- "AlwaysPairable"
+ "AlwaysPairable",
"PairableTimeout",
"DeviceID",
"ReverseServiceDiscovery",