From a91540b7674301ecb3d51c221077d8528d85fc96 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Fri, 28 Feb 2003 14:03:51 +0000 Subject: [PATCH] Renamed SHERLOCK_CONFIG_xxx to CONFIG_xxx to be consistent. --- lib/config.h | 2 +- lib/lfs.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/config.h b/lib/config.h index 9e78579f..31e61d5e 100644 --- a/lib/config.h +++ b/lib/config.h @@ -46,7 +46,7 @@ typedef u32 oid_t; /* Object ID */ /* Data types and functions for accessing file positions */ -#ifdef SHERLOCK_CONFIG_LARGE_DB +#ifdef CONFIG_LARGE_DB typedef s64 sh_off_t; #define BYTES_PER_O 5 #define BYTES_PER_P 8 diff --git a/lib/lfs.h b/lib/lfs.h index 4be56b71..ee9b71b1 100644 --- a/lib/lfs.h +++ b/lib/lfs.h @@ -13,7 +13,7 @@ #include #include -#ifdef SHERLOCK_CONFIG_LFS +#ifdef CONFIG_LFS #define sh_open open64 #define sh_seek lseek64 @@ -24,7 +24,7 @@ #define sh_pread pread64 #define sh_pwrite pwrite64 -#else /* !SHERLOCK_CONFIG_LFS */ +#else /* !CONFIG_LFS */ #define sh_open open #define sh_seek(f,o,w) lseek(f,o,w) @@ -33,7 +33,7 @@ #define sh_pread pread #define sh_pwrite pwrite -#endif /* !SHERLOCK_CONFIG_LFS */ +#endif /* !CONFIG_LFS */ #define SHERLOCK_HAVE_PREAD -- 2.39.2