[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Thu Apr 12 15:39:03 MDT 2012


The branch, master has been updated
       via  f6328b1 s3: Fix a typo
       via  6742aa1 s3: Fix a segfault with debug level 3 on Solaris
      from  bcc16f1 s4-libnet: split export_keytab in a separate python module to avoid pulling in HDB dependency

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


- Log -----------------------------------------------------------------
commit f6328b14c8d5fbc36d4597ebd52f74bfd60d92fc
Author: Volker Lendecke <vl at samba.org>
Date:   Thu Apr 12 21:59:31 2012 +0200

    s3: Fix a typo
    
    Autobuild-User: Volker Lendecke <vl at samba.org>
    Autobuild-Date: Thu Apr 12 23:38:24 CEST 2012 on sn-devel-104

commit 6742aa1fb62bdb70ee5e89d243b4058ba6b5e73a
Author: Volker Lendecke <vl at samba.org>
Date:   Thu Apr 12 12:15:50 2012 +0200

    s3: Fix a segfault with debug level 3 on Solaris
    
    printf can not deal with NULL strings

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

Summary of changes:
 source3/modules/vfs_aio_linux.c |    2 +-
 source3/smbd/password.c         |    3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_aio_linux.c b/source3/modules/vfs_aio_linux.c
index f6fa80a..d49dc49 100644
--- a/source3/modules/vfs_aio_linux.c
+++ b/source3/modules/vfs_aio_linux.c
@@ -98,7 +98,7 @@ static bool init_aio_linux(struct vfs_handle_struct *handle)
 		return true;
 	}
 
-	/* Shedule a shutdown event for 30 seconds from now. */
+	/* Schedule a shutdown event for 30 seconds from now. */
 	te = tevent_add_timer(server_event_context(),
 				NULL,
 				timeval_current_ofs(30, 0),
diff --git a/source3/smbd/password.c b/source3/smbd/password.c
index 39cde15..2a76d83 100644
--- a/source3/smbd/password.c
+++ b/source3/smbd/password.c
@@ -286,7 +286,8 @@ int register_existing_vuid(struct smbd_server_connection *sconn,
 
 	DEBUG(3, ("register_existing_vuid: User name: %s\t"
 		  "Real name: %s\n", vuser->session_info->unix_info->unix_name,
-		  vuser->session_info->info->full_name));
+		  vuser->session_info->info->full_name ?
+		  vuser->session_info->info->full_name : ""));
 
 	if (!vuser->session_info->security_token) {
 		DEBUG(1, ("register_existing_vuid: session_info does not "


-- 
Samba Shared Repository


More information about the samba-cvs mailing list