summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Nosthoff <committed@heine.so>2020-07-24 16:03:06 +0200
committerDoHyun Pyun <dh79.pyun@samsung.com>2020-09-16 11:59:21 +0900
commite8467740966f3586608cf797ef8d5971637207a6 (patch)
tree8c90ffb71c69b70b19141d8a635b9f477ab91056
parent102d01e6808964b75fbb782c340d33a855f17bf6 (diff)
downloadbluez-submit/tizen/20200916.225437.tar.gz
bluez-submit/tizen/20200916.225437.tar.bz2
bluez-submit/tizen/20200916.225437.zip
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") Change-Id: I193e6da4956605a932f08d2f4ec3000e23fc2bb5 Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
-rwxr-xr-xsrc/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index b98a49d1..ff8c020e 100755
--- a/src/main.c
+++ b/src/main.c
@@ -82,7 +82,7 @@ static const char *supported_options[] = {
"Name",
"Class",
"DiscoverableTimeout",
- "AlwaysPairable"
+ "AlwaysPairable",
"PairableTimeout",
"DeviceID",
"ReverseServiceDiscovery",