From 804cfb20a067b4b687089dc72a8271b3abf20f31 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 25 Aug 2004 14:24:16 +0000 Subject: r2070: Let's try to overload srnlen and strndup for AIX where they are natly broken. (This used to be commit 98feb3318f54bb48ce56fc8f4721fec4967b9dd9) --- source3/lib/util_str.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 1083076edd..3e6de23e55 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -1502,7 +1502,7 @@ int fstr_sprintf(fstring s, const char *fmt, ...) } -#ifndef HAVE_STRNDUP +#if !defined(HAVE_STRNDUP) || defined(BROKEN_STRNDUP) /** Some platforms don't have strndup. **/ @@ -1522,7 +1522,7 @@ int fstr_sprintf(fstring s, const char *fmt, ...) } #endif -#ifndef HAVE_STRNLEN +#if !defined(HAVE_STRNLEN) || defined(BROKEN_STRNLEN) /** Some platforms don't have strnlen **/ -- cgit