diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-11-24 19:44:18 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-11-24 19:44:18 +0100 |
commit | 4825df832336b0b7e8248856e3676dba3640863b (patch) | |
tree | 32543fbe71a101e8907ed310ce26418a78613462 /source4/lib/ldb/tests/python/ldap.py | |
parent | e77c0f1b505832043074758d3a468dc782a7b438 (diff) | |
download | samba-4825df832336b0b7e8248856e3676dba3640863b.tar.gz samba-4825df832336b0b7e8248856e3676dba3640863b.tar.bz2 samba-4825df832336b0b7e8248856e3676dba3640863b.zip |
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.
Diffstat (limited to 'source4/lib/ldb/tests/python/ldap.py')
-rwxr-xr-x | source4/lib/ldb/tests/python/ldap.py | 3 |
1 files changed, 2 insertions, 1 deletions
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) |