mirror of
https://github.com/samba-team/samba.git
synced 2025-02-03 13:47:25 +03:00
s3/loadparm: Fix severe HPUX compiler issue.
Members of struct should be initialized explictly. Fixes bug #6804.
This commit is contained in:
parent
11a8a54c82
commit
5ec557d9f6
@ -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,
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user