1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

param: Rename variable used for lp_passwordserver szPasswordServer

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Andrew Bartlett 2013-12-24 16:04:03 +13:00 committed by Jeremy Allison
parent 409fe4f86d
commit 06499f739b
3 changed files with 3 additions and 3 deletions

View File

@ -255,7 +255,7 @@ FN_GLOBAL_CONST_STRING(netbios_name, netbios_name)
FN_GLOBAL_CONST_STRING(netbios_scope, netbios_scope) FN_GLOBAL_CONST_STRING(netbios_scope, netbios_scope)
FN_GLOBAL_CONST_STRING(ntp_signd_socket_directory, ntp_signd_socket_directory) FN_GLOBAL_CONST_STRING(ntp_signd_socket_directory, ntp_signd_socket_directory)
FN_GLOBAL_CONST_STRING(passdb_backend, passdb_backend) FN_GLOBAL_CONST_STRING(passdb_backend, passdb_backend)
FN_GLOBAL_CONST_STRING(passwordserver, szPasswordServer) FN_GLOBAL_CONST_STRING(passwordserver, passwordserver)
FN_GLOBAL_CONST_STRING(piddir, szPidDir) FN_GLOBAL_CONST_STRING(piddir, szPidDir)
FN_GLOBAL_CONST_STRING(private_dir, szPrivateDir) FN_GLOBAL_CONST_STRING(private_dir, szPrivateDir)
FN_GLOBAL_CONST_STRING(realm, szRealm_upper) FN_GLOBAL_CONST_STRING(realm, szRealm_upper)

View File

@ -502,7 +502,7 @@ static struct parm_struct parm_table[] = {
.label = "password server", .label = "password server",
.type = P_STRING, .type = P_STRING,
.p_class = P_GLOBAL, .p_class = P_GLOBAL,
.offset = GLOBAL_VAR(szPasswordServer), .offset = GLOBAL_VAR(passwordserver),
.special = NULL, .special = NULL,
.enum_list = NULL, .enum_list = NULL,
.flags = FLAG_ADVANCED | FLAG_WIZARD, .flags = FLAG_ADVANCED | FLAG_WIZARD,

View File

@ -801,7 +801,7 @@ static void init_globals(bool reinit_globals)
string_set(&Globals.logon_path, "\\\\%N\\%U\\profile"); string_set(&Globals.logon_path, "\\\\%N\\%U\\profile");
Globals.szNameResolveOrder = (const char **)str_list_make_v3(NULL, "lmhosts wins host bcast", NULL); Globals.szNameResolveOrder = (const char **)str_list_make_v3(NULL, "lmhosts wins host bcast", NULL);
string_set(&Globals.szPasswordServer, "*"); string_set(&Globals.passwordserver, "*");
Globals.AlgorithmicRidBase = BASE_RID; Globals.AlgorithmicRidBase = BASE_RID;