[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-1830-gee4c1ed

Andrew Bartlett abartlet at samba.org
Wed May 27 11:08:53 GMT 2009


The branch, master has been updated
       via  ee4c1ed010d62e0522f6a96f40f1ebd2df89a6b6 (commit)
      from  0d040ff448a67048c5bdade0c38ed0a923202c6e (commit)

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


- Log -----------------------------------------------------------------
commit ee4c1ed010d62e0522f6a96f40f1ebd2df89a6b6
Author: Nadezhda Ivanova <nadezhda.ivanova at postpath.com>
Date:   Wed May 27 13:49:51 2009 +0300

    Modified SamDB to accept options like Ldb.

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

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


Changeset truncated at 500 lines:

diff --git a/source4/scripting/python/samba/samdb.py b/source4/scripting/python/samba/samdb.py
index 17b5450..454a9d1 100644
--- a/source4/scripting/python/samba/samdb.py
+++ b/source4/scripting/python/samba/samdb.py
@@ -36,14 +36,14 @@ class SamDB(samba.Ldb):
     """The SAM database."""
 
     def __init__(self, url=None, session_info=None, credentials=None, 
-                 modules_dir=None, lp=None):
+                 modules_dir=None, lp=None, options=None):
         """Open the Sam Database.
 
         :param url: URL of the database.
         """
         self.lp = lp
         super(SamDB, self).__init__(session_info=session_info, credentials=credentials,
-                                    modules_dir=modules_dir, lp=lp)
+                                    modules_dir=modules_dir, lp=lp, options=options)
         glue.dsdb_set_global_schema(self)
         if url:
             self.connect(url)


-- 
Samba Shared Repository


More information about the samba-cvs mailing list