mirror of
https://github.com/samba-team/samba.git
synced 2025-08-02 00:22:11 +03:00
param: rename winbindMaxDomainConnections -> _winbind_max_domain_connections
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
committed by
Jeremy Allison
parent
866fd3b889
commit
78e276a35d
@ -252,7 +252,7 @@ enum case_handling {CASE_LOWER,CASE_UPPER};
|
||||
char *szIdmapUID; \
|
||||
char *szIdmapGID; \
|
||||
char *szIdmapBackend; \
|
||||
int winbindMaxDomainConnections;
|
||||
int _winbind_max_domain_connections;
|
||||
|
||||
const char* server_role_str(uint32_t role);
|
||||
int lp_find_server_role(int server_role, int security, int domain_logons, int domain_master);
|
||||
|
@ -3785,7 +3785,7 @@ struct parm_struct parm_table[] = {
|
||||
.label = "winbind max domain connections",
|
||||
.type = P_INTEGER,
|
||||
.p_class = P_GLOBAL,
|
||||
.offset = GLOBAL_VAR(winbindMaxDomainConnections),
|
||||
.offset = GLOBAL_VAR(_winbind_max_domain_connections),
|
||||
.special = NULL,
|
||||
.enum_list = NULL,
|
||||
},
|
||||
|
@ -714,7 +714,7 @@ static void init_globals(struct loadparm_context *lp_ctx, bool reinit_globals)
|
||||
Globals.reset_on_zero_vc = false;
|
||||
Globals.log_writeable_files_on_exit = false;
|
||||
Globals.create_krb5_conf = true;
|
||||
Globals.winbindMaxDomainConnections = 1;
|
||||
Globals._winbind_max_domain_connections = 1;
|
||||
|
||||
/* hostname lookups can be very expensive and are broken on
|
||||
a large number of sites (tridge) */
|
||||
@ -1020,7 +1020,7 @@ char *lp_ ## fn_name(TALLOC_CTX *ctx,int i) {return(lp_string((ctx), (LP_SNUM_OK
|
||||
char lp_ ## fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
|
||||
|
||||
static FN_GLOBAL_INTEGER(winbind_max_domain_connections_int,
|
||||
winbindMaxDomainConnections)
|
||||
_winbind_max_domain_connections)
|
||||
|
||||
int lp_winbind_max_domain_connections(void)
|
||||
{
|
||||
|
Reference in New Issue
Block a user