svn commit: samba r22694 - in branches/SAMBA_4_0/source/lib/ldb/common: .

vlendec at samba.org vlendec at samba.org
Sun May 6 11:03:34 GMT 2007


Author: vlendec
Date: 2007-05-06 11:03:33 +0000 (Sun, 06 May 2007)
New Revision: 22694

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=22694

Log:
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.


Modified:
   branches/SAMBA_4_0/source/lib/ldb/common/ldb_dn.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/common/ldb_dn.c
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/common/ldb_dn.c	2007-05-06 08:22:59 UTC (rev 22693)
+++ branches/SAMBA_4_0/source/lib/ldb/common/ldb_dn.c	2007-05-06 11:03:33 UTC (rev 22694)
@@ -34,8 +34,8 @@
  *  Author: Simo Sorce
  */
 
+#include "ldb_includes.h"
 #include <ctype.h>
-#include "ldb_includes.h"
 
 #define LDB_DN_NULL_FAILED(x) if (!(x)) goto failed
 



More information about the samba-cvs mailing list