From 3c9c16b6e0f19313d81a1a42daad3d62766c296a Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 7 Sep 2023 12:39:53 -0700 Subject: [PATCH] main.conf: Fix documention of CSIS.Encrypt 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(-) diff --git a/src/main.conf b/src/main.conf index eea2d71..289e9cd 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 -- 2.7.4