From 0bb1c2da0e4164b448c6b7cc988f59b59225802c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 1 Sep 2006 12:37:17 +0000 Subject: r17992: reverted r17842 This needs more consideration, as the patch removed the copyright notice and license from the timegm.c code. Volker, when you get a minute can you let me know what problem this patch fixed so I can find a different approach? (This used to be commit 5b9b9dd5303300778bb9e6d0479ab03fdd70c67d) --- source4/lib/ldb/replace/replace.c | 2 +- source4/lib/ldb/replace/timegm.c | 2 +- source4/lib/replace/config.m4 | 2 +- source4/lib/replace/replace.c | 46 --------------------------------------- 4 files changed, 3 insertions(+), 49 deletions(-) diff --git a/source4/lib/ldb/replace/replace.c b/source4/lib/ldb/replace/replace.c index a63613fc10..faa5771a76 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" -#if !defined(HAVE_STRNLEN) && !defined(_SAMBA_BUILD_) +#ifndef HAVE_STRNLEN /** Some platforms don't have strnlen **/ diff --git a/source4/lib/ldb/replace/timegm.c b/source4/lib/ldb/replace/timegm.c index 10631befd9..5fb15475f3 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" -#if !defined(HAVE_TIMEGM) && !defined(_SAMBA_BUILD_) +#ifndef HAVE_TIMEGM static int is_leap(unsigned y) { diff --git a/source4/lib/replace/config.m4 b/source4/lib/replace/config.m4 index adaba74568..93f0bb34a7 100644 --- a/source4/lib/replace/config.m4 +++ b/source4/lib/replace/config.m4 @@ -50,7 +50,7 @@ AC_CHECK_HEADERS(sys/syslog.h syslog.h) AC_CHECK_FUNCS(seteuid setresuid setegid setresgid chroot bzero strerror) AC_CHECK_FUNCS(vsyslog setlinebuf mktime ftruncate chsize rename) AC_CHECK_FUNCS(waitpid strlcpy strlcat innetgr initgroups memmove strdup) -AC_CHECK_FUNCS(pread pwrite strndup strnlen strcasestr strtok_r mkdtemp) +AC_CHECK_FUNCS(pread pwrite strndup strcasestr strtok_r mkdtemp) AC_HAVE_DECL(setresuid, [#include ]) AC_HAVE_DECL(setresgid, [#include ]) AC_HAVE_DECL(errno, [#include ]) diff --git a/source4/lib/replace/replace.c b/source4/lib/replace/replace.c index f8bd62109d..b8f4bc1c3c 100644 --- a/source4/lib/replace/replace.c +++ b/source4/lib/replace/replace.c @@ -387,20 +387,6 @@ duplicate a string } #endif -#ifndef HAVE_STRNLEN -/** - Some platforms don't have strnlen -**/ - - size_t strnlen(const char *s, size_t n) -{ - size_t i; - for (i=0; itm_year; ++i) - res += is_leap(i) ? 366 : 365; - - for (i = 0; i < tm->tm_mon; ++i) - res += ndays[is_leap(tm->tm_year)][i]; - res += tm->tm_mday - 1; - res *= 24; - res += tm->tm_hour; - res *= 60; - res += tm->tm_min; - res *= 60; - res += tm->tm_sec; - return res; -} -#endif -- cgit