mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-26 21:55:44 +07:00
journal: don't set seal flag if we don't have gcrypt built-in
This commit is contained in:
parent
48b617399d
commit
49a32d43de
@ -2024,7 +2024,9 @@ int journal_file_open(
|
|||||||
#ifdef HAVE_XZ
|
#ifdef HAVE_XZ
|
||||||
f->compress = compress;
|
f->compress = compress;
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_GCRYPT
|
||||||
f->seal = seal;
|
f->seal = seal;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (mmap_cache)
|
if (mmap_cache)
|
||||||
f->mmap = mmap_cache_ref(mmap_cache);
|
f->mmap = mmap_cache_ref(mmap_cache);
|
||||||
@ -2059,9 +2061,11 @@ int journal_file_open(
|
|||||||
#ifdef HAVE_GCRYPT
|
#ifdef HAVE_GCRYPT
|
||||||
/* Try to load the FSPRG state, and if we can't, then
|
/* Try to load the FSPRG state, and if we can't, then
|
||||||
* just don't do sealing */
|
* just don't do sealing */
|
||||||
|
if (f->seal) {
|
||||||
r = journal_file_fss_load(f);
|
r = journal_file_fss_load(f);
|
||||||
if (r < 0)
|
if (r < 0)
|
||||||
f->seal = false;
|
f->seal = false;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
r = journal_file_init_header(f, template);
|
r = journal_file_init_header(f, template);
|
||||||
|
Loading…
Reference in New Issue
Block a user