The branch, master has been updated
       via  4825df8... s4:ldap.py - fix the schema update test on Windows Server
      from  e77c0f1... s4:libnet_become_dc - fix typo

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 4825df832336b0b7e8248856e3676dba3640863b
Author: Matthias Dieter Wallnöfer <[email protected]>
Date:   Tue Nov 24 19:44:18 2009 +0100

    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.

-----------------------------------------------------------------------

Summary of changes:
 source4/lib/ldb/tests/python/ldap.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/lib/ldb/tests/python/ldap.py 
b/source4/lib/ldb/tests/python/ldap.py
index 009cd1b..9a7976b 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)


-- 
Samba Shared Repository

Reply via email to