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

Karolin Seeger kseeger at samba.org
Tue Oct 13 10:41:12 MDT 2009


The branch, v3-5-test has been updated
       via  4c7d2aa... s3/loadparm: Fix severe HPUX compiler issue.
      from  f1529c3... torture: fixed socket leak in BENCH-TCON test

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


- Log -----------------------------------------------------------------
commit 4c7d2aa2da9935248ee772d574f5225bbb9afd5d
Author: Olaf Flebbe <o.flebbe at science-computing.de>
Date:   Tue Oct 13 14:13:06 2009 +0200

    s3/loadparm: Fix severe HPUX compiler issue.
    
    Members of struct should be initialized explictly.
    Fixes bug #6804.
    (cherry picked from commit 5ec557d9f6137dc96b2c099fb13726e6552fb1fe)

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

Summary of changes:
 source3/param/loadparm.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 7bac72e..fa0577b 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -3275,6 +3275,8 @@ static struct parm_struct parm_table[] = {
 		.type		= P_LIST,
 		.p_class	= P_GLOBAL,
 		.ptr		= &Globals.szInitLogonDelayedHosts,
+		.special        = NULL,
+		.enum_list	= NULL,
 		.flags		= FLAG_ADVANCED,
 	},
 
@@ -3283,6 +3285,8 @@ static struct parm_struct parm_table[] = {
 		.type		= P_INTEGER,
 		.p_class	= P_GLOBAL,
 		.ptr		= &Globals.InitLogonDelay,
+		.special        = NULL,
+		.enum_list	= NULL,
 		.flags		= FLAG_ADVANCED,
 
 	},
@@ -3672,6 +3676,7 @@ static struct parm_struct parm_table[] = {
 		.type		= P_ENUM,
 		.p_class	= P_GLOBAL,
 		.ptr		= &Globals.ldap_ref_follow,
+		.special	= NULL,
 		.enum_list	= enum_bool_auto,
 		.flags		= FLAG_ADVANCED,
 	},


-- 
Samba Shared Repository


More information about the samba-cvs mailing list