aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOndrej Kozina <okozina@redhat.com>2023-11-28 12:15:09 +0100
committerMilan Broz <gmazyland@gmail.com>2023-11-28 18:52:57 +0000
commite4a845c51ed178ada48425c090fad2fa9c8cab39 (patch)
tree2a9eccf7c4ec25e0c8964ec0d87ba031066eef79
parentd64203a018a4e0311ad0037bc8013a6c2bcf29e8 (diff)
downloadcryptsetup-e4a845c51ed178ada48425c090fad2fa9c8cab39.tar.gz
Use proper integer constant in meson_options.txt
Unfortunately it creates decimal base constant when converting to C define. But the former implicit and deprecated conversion did it as well.
-rw-r--r--meson_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index c946fdec..7f22cd43 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -16,7 +16,7 @@ option('default-luks2-external-tokens-path', type : 'string', description : 'pat
option('default-luks2-iter-time', type : 'integer', description : 'Argon2 PBKDF iteration time for LUKS2 (in ms)', value : 2000)
option('default-luks2-keyslot-cipher', type : 'string', description : 'fallback cipher for LUKS2 keyslot (if data encryption is incompatible)', value : 'aes-xts-plain64')
option('default-luks2-keyslot-keybits', type : 'integer', description : 'fallback key size for LUKS2 keyslot (if data encryption is incompatible)', value : 512)
-option('default-luks2-lock-dir-perms', type : 'integer', description : 'default luks2 locking directory permissions', value : '0700')
+option('default-luks2-lock-dir-perms', type : 'integer', description : 'default luks2 locking directory permissions', value : 0o700)
option('default-luks2-lock-path', type : 'string', description : 'path to directory for LUKSv2 locks', value : '/run/cryptsetup')
option('default-luks2-memory-kb', type : 'integer', description : 'Argon2 PBKDF memory cost for LUKS2 (in kB)', value : 1048576)
option('default-luks2-parallel-threads', type : 'integer', description : 'Argon2 PBKDF max parallel cost for LUKS2 (if CPUs available)', value : 4)