diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index e5fa85cd676..9903a509e89 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -181,7 +181,7 @@ FN_GLOBAL_BOOL(enable_privileges, enable_privileges) FN_GLOBAL_BOOL(encrypted_passwords, encrypted_passwords) FN_GLOBAL_BOOL(enhanced_browsing, enhanced_browsing) FN_GLOBAL_BOOL(getwd_cache, getwd_cache) -FN_GLOBAL_BOOL(host_msdfs, bHostMSDfs) +FN_GLOBAL_BOOL(host_msdfs, host_msdfs) FN_GLOBAL_BOOL(hostname_lookups, bHostnameLookups) FN_GLOBAL_BOOL(lanman_auth, bLanmanAuth) FN_GLOBAL_BOOL(large_readwrite, bLargeReadwrite) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 5c1ac459c6e..919144da60d 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -3893,7 +3893,7 @@ static struct parm_struct parm_table[] = { .label = "host msdfs", .type = P_BOOL, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bHostMSDfs), + .offset = GLOBAL_VAR(host_msdfs), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index d55033cd0d0..ea1619057b1 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1007,7 +1007,7 @@ static void init_globals(bool reinit_globals) Globals.smb_ports = (const char **)str_list_make_v3(NULL, SMB_PORTS, NULL); Globals.enable_privileges = true; - Globals.bHostMSDfs = true; + Globals.host_msdfs = true; Globals.enable_asu_support = false; /* User defined shares. */