summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2018-09-01 23:47:46 +0900
committerLukas Nykryn <lnykryn@redhat.com>2018-10-29 10:41:47 +0100
commit96b6171376bfdb7417143a2026beda059fe3e22f (patch)
tree052f7cc1485cc1de00eb31758051586a432d7533
parenta046230cfb7e02938e3ad2ac85515636b319651e (diff)
downloadsystemd-96b6171376bfdb7417143a2026beda059fe3e22f.tar.gz
cryptsetup: do not define arg_sector_size if libgcrypt is v1.x (#9990)
Follow-up for #9936. (cherry picked from commit 645461f0cf6ec91e5b0b571559fb4cc4898192bc) Related: #1572563
-rw-r--r--src/cryptsetup/cryptsetup.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cryptsetup/cryptsetup.c b/src/cryptsetup/cryptsetup.c
index 87008cb969..abeba44ee8 100644
--- a/src/cryptsetup/cryptsetup.c
+++ b/src/cryptsetup/cryptsetup.c
@@ -30,7 +30,9 @@
static const char *arg_type = NULL; /* ANY_LUKS, CRYPT_LUKS1, CRYPT_LUKS2, CRYPT_TCRYPT or CRYPT_PLAIN */
static char *arg_cipher = NULL;
static unsigned arg_key_size = 0;
+#if HAVE_LIBCRYPTSETUP_SECTOR_SIZE
static unsigned arg_sector_size = CRYPT_SECTOR_SIZE;
+#endif
static int arg_key_slot = CRYPT_ANY_SLOT;
static unsigned arg_keyfile_size = 0;
static uint64_t arg_keyfile_offset = 0;