Message ID | 20230907194134.2242634-2-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 3294c42c9677b185f22f625d8f25aac30a9cb34d |
Headers | show |
Series | [BlueZ,1/2] main.conf: Fix printing errors for valid options | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | success | CheckPatch PASS |
tedd_an/GitLint | success | Gitlint PASS |
tedd_an/IncrementalBuild | success | Incremental Build PASS |
diff --git a/src/main.conf b/src/main.conf index d108934a8ae9..085c81a462dd 100644 --- a/src/main.conf +++ b/src/main.conf @@ -270,10 +270,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
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> CSIS.Encrypt is a boolean so it shall only be set with true/false not yes/no. --- src/main.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)