fix #ifdef

This commit is contained in:
Ronny Chevalier 2014-07-08 09:22:25 +02:00 committed by Zbigniew Jędrzejewski-Szmek
parent da625e4b80
commit 92261977d8
3 changed files with 3 additions and 3 deletions

View File

@ -180,7 +180,7 @@ enum {
};
#define HEADER_COMPATIBLE_ANY HEADER_COMPATIBLE_SEALED
#if HAVE_GCRYPT
#ifdef HAVE_GCRYPT
# define HEADER_COMPATIBLE_SUPPORTED HEADER_COMPATIBLE_SEALED
#else
# define HEADER_COMPATIBLE_SUPPORTED 0

View File

@ -2476,7 +2476,7 @@ int journal_file_open(
f->flags = flags;
f->prot = prot_from_flags(flags);
f->writable = (flags & O_ACCMODE) != O_RDONLY;
#if defined(HAVE_LZ)
#if defined(HAVE_LZ4)
f->compress_lz4 = compress;
#elif defined(HAVE_XZ)
f->compress_xz = compress;

View File

@ -27,7 +27,7 @@
# define XZ_OK -EPROTONOSUPPORT
#endif
#ifdef HAVE_XZ
#ifdef HAVE_LZ4
# define LZ4_OK 0
#else
# define LZ4_OK -EPROTONOSUPPORT