[SCM] Samba Shared Repository - branch master updated

Simo Sorce idra at samba.org
Fri Jun 11 06:27:33 MDT 2010


The branch, master has been updated
       via  4fc36ca... s3:auth fix samu->info3 conversion
      from  d5cf648... s3: Fix starving the echo responder

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


- Log -----------------------------------------------------------------
commit 4fc36ca802230fbed8bb2b3b959bc2a6afd1ed3d
Author: Simo Sorce <idra at samba.org>
Date:   Fri Jun 11 08:25:27 2010 -0400

    s3:auth fix samu->info3 conversion
    
    Some pdb_get_ functions where missing because of previous mis-patching

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

Summary of changes:
 source3/auth/server_info.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/auth/server_info.c b/source3/auth/server_info.c
index 6b43fc6..1ef2724 100644
--- a/source3/auth/server_info.c
+++ b/source3/auth/server_info.c
@@ -413,14 +413,17 @@ NTSTATUS samu_to_SamInfo3(TALLOC_CTX *mem_ctx,
 		info3->base.logon_script.string = talloc_strdup(info3, tmp);
 		RET_NOMEM(info3->base.logon_script.string);
 	}
+	tmp = pdb_get_profile_path(samu);
 	if (tmp) {
 		info3->base.profile_path.string	= talloc_strdup(info3, tmp);
 		RET_NOMEM(info3->base.profile_path.string);
 	}
+	tmp = pdb_get_homedir(samu);
 	if (tmp) {
 		info3->base.home_directory.string = talloc_strdup(info3, tmp);
 		RET_NOMEM(info3->base.home_directory.string);
 	}
+	tmp = pdb_get_dir_drive(samu);
 	if (tmp) {
 		info3->base.home_drive.string = talloc_strdup(info3, tmp);
 		RET_NOMEM(info3->base.home_drive.string);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list