[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-282-g0770028

Andrew Tridgell tridge at samba.org
Thu Mar 12 04:14:15 GMT 2009


The branch, master has been updated
       via  0770028cbea5f13c0dda2b9a89803359bed66306 (commit)
      from  917905aea0cfeff53009839f70cdc9eefdcfa2c9 (commit)

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


- Log -----------------------------------------------------------------
commit 0770028cbea5f13c0dda2b9a89803359bed66306
Author: Andrew Tridgell <tridge at samba.org>
Date:   Thu Mar 12 15:13:23 2009 +1100

    fixed more embedded spaces in LDIF
    
    This one added 3 spaces to the end of any new passwords

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

Summary of changes:
 source4/scripting/python/samba/samdb.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/scripting/python/samba/samdb.py b/source4/scripting/python/samba/samdb.py
index 740806f..1c5a8df 100644
--- a/source4/scripting/python/samba/samdb.py
+++ b/source4/scripting/python/samba/samdb.py
@@ -59,7 +59,7 @@ dn: CN=%s,CN=ForeignSecurityPrincipals,%s
 objectClass: top
 objectClass: foreignSecurityPrincipal
 description: %s
-        """ % (sid, domaindn, desc)
+""" % (sid, domaindn, desc)
         # deliberately ignore errors from this, as the records may
         # already exist
         for msg in self.parse_ldif(add):
@@ -179,7 +179,7 @@ dn: %s
 changetype: modify
 replace: userPassword
 userPassword: %s
-    """ % (user_dn, password)
+""" % (user_dn, password)
 
             self.modify_ldif(setpw)
 
@@ -235,7 +235,7 @@ replace: userAccountControl
 userAccountControl: %u
 replace: accountExpires
 accountExpires: %u
-    """ % (res[0].dn, userAccountControl, accountExpires)
+""" % (res[0].dn, userAccountControl, accountExpires)
             # now change the database
             self.modify_ldif(mod)
         except:


-- 
Samba Shared Repository


More information about the samba-cvs mailing list