[SCM] Samba Shared Repository - branch master updated

Matthias Dieter Wallnöfer mdw at samba.org
Fri Mar 12 13:10:14 MST 2010


The branch, master has been updated
       via  31b0417... s4:provision.py - small output improvement
       via  b3f727e... s4:util.c - "dsdb_check_optional_feature" - counter should be "unsigned"
      from  e391308... s3: Add "net registry increment"

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


- Log -----------------------------------------------------------------
commit 31b0417f7def5af5392088eec8fe6e77074d3da9
Author: Matthias Dieter Wallnöfer <mwallnoefer at yahoo.de>
Date:   Fri Mar 12 21:04:22 2010 +0100

    s4:provision.py - small output improvement

commit b3f727e6a5f20075dd79291ff895a46e47b63e53
Author: Matthias Dieter Wallnöfer <mwallnoefer at yahoo.de>
Date:   Fri Mar 12 18:56:44 2010 +0100

    s4:util.c - "dsdb_check_optional_feature" - counter should be "unsigned"

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

Summary of changes:
 source4/dsdb/samdb/ldb_modules/util.c       |    2 +-
 source4/scripting/python/samba/provision.py |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/dsdb/samdb/ldb_modules/util.c b/source4/dsdb/samdb/ldb_modules/util.c
index 8cf3335..d9c05a6 100644
--- a/source4/dsdb/samdb/ldb_modules/util.c
+++ b/source4/dsdb/samdb/ldb_modules/util.c
@@ -442,7 +442,7 @@ int dsdb_check_optional_feature(struct ldb_module *module, struct ldb_dn *scope,
 	struct GUID search_guid;
 	const char *attrs[] = {"msDS-EnabledFeature", NULL};
 	int ret;
-	int i;
+	unsigned int i;
 	struct ldb_message_element *el;
 
 	*feature_enabled = false;
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py
index 0a24837..aa13711 100644
--- a/source4/scripting/python/samba/provision.py
+++ b/source4/scripting/python/samba/provision.py
@@ -219,7 +219,7 @@ def findnss(nssfn, names):
             return nssfn(name)
         except KeyError:
             pass
-    raise KeyError("Unable to find user/group %r" % names)
+    raise KeyError("Unable to find user/group in %r" % names)
 
 
 findnss_uid = lambda names: findnss(pwd.getpwnam, names)[2]


-- 
Samba Shared Repository


More information about the samba-cvs mailing list