[SCM] Samba Shared Repository - branch v3-6-test updated

Karolin Seeger kseeger at samba.org
Thu Aug 18 13:01:49 MDT 2011


The branch, v3-6-test has been updated
       via  9a41e24 s3:idmap_tdb2: fix bug 8368 : correctly initialize "idmap config * : script" with NULL
      from  7039bbc Fix warning messages on Freebsd 4.6.2.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test


- Log -----------------------------------------------------------------
commit 9a41e24753b49b8ef1653dde763fb0764884e616
Author: Michael Adam <obnox at samba.org>
Date:   Wed Aug 10 13:41:14 2011 +0200

    s3:idmap_tdb2: fix bug 8368 : correctly initialize "idmap config * : script" with NULL
    
    this fixes the fallback to the deprecated spelling idmap:script

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

Summary of changes:
 source3/winbindd/idmap_tdb2.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/winbindd/idmap_tdb2.c b/source3/winbindd/idmap_tdb2.c
index 112978b..47bd1e8 100644
--- a/source3/winbindd/idmap_tdb2.c
+++ b/source3/winbindd/idmap_tdb2.c
@@ -289,7 +289,7 @@ static NTSTATUS idmap_tdb2_db_init(struct idmap_domain *dom)
 		ret = NT_STATUS_NO_MEMORY;
 		goto failed;
 	}
-	ctx->script = lp_parm_const_string(-1, config_option, "script", "NULL");
+	ctx->script = lp_parm_const_string(-1, config_option, "script", NULL);
 	talloc_free(config_option);
 
 	idmap_script = lp_parm_const_string(-1, "idmap", "script", NULL);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list