From 4825df832336b0b7e8248856e3676dba3640863b Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Tue, 24 Nov 2009 19:44:18 +0100 Subject: s4:ldap.py - fix the schema update test on Windows Server Apparently Windows Server (2003) doesn't like the comma delimiter here. I got always error 16 ("LDB_NO_SUCH_ATTRIBUTE"). With this change the test works again. --- source4/lib/ldb/tests/python/ldap.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/lib') diff --git a/source4/lib/ldb/tests/python/ldap.py b/source4/lib/ldb/tests/python/ldap.py index 009cd1b5a7..9a7976b694 100755 --- a/source4/lib/ldb/tests/python/ldap.py +++ b/source4/lib/ldb/tests/python/ldap.py @@ -1967,7 +1967,8 @@ objectClassCategory: 1 subClassOf: organizationalPerson systemFlags: 16 rDNAttID: cn -systemMustContain: cn, """ + attr_ldap_display_name + """ +systemMustContain: cn +systemMustContain: """ + attr_ldap_display_name + """ systemOnly: FALSE """ self.ldb.add_ldif(ldif) -- cgit