summaryrefslogtreecommitdiff
path: root/source4/lib/ldb
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-05-06 11:03:33 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:52:02 -0500
commitd6121458b0b3cfecb857877e0740560f282cbe48 (patch)
tree1dfaaebe69fe4463337c0425153706345e584bbe /source4/lib/ldb
parentbb71fc3856ae1dc9f42f390b3e72f08252857cd2 (diff)
downloadsamba-d6121458b0b3cfecb857877e0740560f282cbe48.tar.gz
samba-d6121458b0b3cfecb857877e0740560f282cbe48.tar.bz2
samba-d6121458b0b3cfecb857877e0740560f282cbe48.zip
r22694: It seems that AIX 5.3 with XLC has difficulties with <ctype.h>. 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)
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r--source4/lib/ldb/common/ldb_dn.c2
1 files changed, 1 insertions, 1 deletions
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 <ctype.h>
#include "ldb_includes.h"
+#include <ctype.h>
#define LDB_DN_NULL_FAILED(x) if (!(x)) goto failed