From d6121458b0b3cfecb857877e0740560f282cbe48 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 6 May 2007 11:03:33 +0000 Subject: r22694: It seems that AIX 5.3 with XLC has difficulties with . This is an attempt to work around this: Maybe it helps if we include other stuff first. This raises a question however: Do we want the DN handling to be locale dependent? isalpha() can return different things depending on the current locale. (This used to be commit 75ba82dee052fa5f4141e66e1cb748101aa95d71) --- source4/lib/ldb/common/ldb_dn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib') diff --git a/source4/lib/ldb/common/ldb_dn.c b/source4/lib/ldb/common/ldb_dn.c index 766f8a174c..ea7c6b5f69 100644 --- a/source4/lib/ldb/common/ldb_dn.c +++ b/source4/lib/ldb/common/ldb_dn.c @@ -34,8 +34,8 @@ * Author: Simo Sorce */ -#include #include "ldb_includes.h" +#include #define LDB_DN_NULL_FAILED(x) if (!(x)) goto failed -- cgit