diff options
author | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2023-09-07 12:39:53 -0700 |
---|---|---|
committer | Ayush Garg <ayush.garg@samsung.com> | 2024-01-05 19:04:04 +0530 |
commit | 3c9c16b6e0f19313d81a1a42daad3d62766c296a (patch) | |
tree | 93a587f63c305a719808d45283cf921d9e0de20d | |
parent | d0f538515da08ff8d52c23ef11be800fef5edf90 (diff) | |
download | bluez-3c9c16b6e0f19313d81a1a42daad3d62766c296a.tar.gz bluez-3c9c16b6e0f19313d81a1a42daad3d62766c296a.tar.bz2 bluez-3c9c16b6e0f19313d81a1a42daad3d62766c296a.zip |
main.conf: Fix documention of CSIS.Encrypt
CSIS.Encrypt is a boolean so it shall only be set with true/false not
yes/no.
-rwxr-xr-x | src/main.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.conf b/src/main.conf index eea2d719..289e9cd5 100755 --- a/src/main.conf +++ b/src/main.conf @@ -276,10 +276,10 @@ # SIRK Encryption # Possible values: -# yes: Encrypt SIRK when read -# no: Do not encrypt SIRK when read. (plaintext) -# Defaults to yes -#Encryption = yes +# true: Encrypt SIRK when read +# false: Do not encrypt SIRK when read. (plaintext) +# Defaults to true +#Encryption = true # Total no of sets belongs to this Profile # Defaults to 0 |