diff options
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r-- | source4/lib/ldb/replace/replace.c | 2 | ||||
-rw-r--r-- | source4/lib/ldb/replace/timegm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/replace/replace.c b/source4/lib/ldb/replace/replace.c index faa5771a76..a63613fc10 100644 --- a/source4/lib/ldb/replace/replace.c +++ b/source4/lib/ldb/replace/replace.c @@ -23,7 +23,7 @@ #include "includes.h" #include "ldb/include/includes.h" -#ifndef HAVE_STRNLEN +#if !defined(HAVE_STRNLEN) && !defined(_SAMBA_BUILD_) /** Some platforms don't have strnlen **/ diff --git a/source4/lib/ldb/replace/timegm.c b/source4/lib/ldb/replace/timegm.c index 5fb15475f3..10631befd9 100644 --- a/source4/lib/ldb/replace/timegm.c +++ b/source4/lib/ldb/replace/timegm.c @@ -38,7 +38,7 @@ #include "includes.h" #include "ldb/include/includes.h" -#ifndef HAVE_TIMEGM +#if !defined(HAVE_TIMEGM) && !defined(_SAMBA_BUILD_) static int is_leap(unsigned y) { |