From d794c10d9695547834f60e282edc46be0f7f70ca Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 10 Sep 2024 15:40:12 +0200 Subject: cryptsetup: use the new crypt_token_set_external_path() API if available Let's make use of libcryptsetup's new crypt_token_set_external_path() API in place of the interposition stuff we have been doing before. Let's kill it entirely, given that this was a developer feature only anyway (and guarded by an appropriate ifdef). Fixes: #30098 --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 80e0047281..6d96996acb 100644 --- a/meson.build +++ b/meson.build @@ -1288,7 +1288,8 @@ foreach ident : ['crypt_set_metadata_size', 'crypt_reencrypt_run', 'crypt_set_data_offset', 'crypt_set_keyring_to_link', - 'crypt_resume_by_volume_key'] + 'crypt_resume_by_volume_key', + 'crypt_token_set_external_path'] have_ident = have and cc.has_function( ident, prefix : '#include ', -- cgit v1.2.3