summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-12-24 16:03:53 +1300
committerJeremy Allison <jra@samba.org>2014-01-24 16:18:54 -0800
commit7fbe9b52532129b1b373ef48150a09f5a1d8ec6f (patch)
treecf8433d662ce8a6252e86867e91a03bc14ab8cac
parent5fe3d6d17fb77dd62bb1e59674762037aa2cfd7d (diff)
downloadsamba-7fbe9b52532129b1b373ef48150a09f5a1d8ec6f.tar.gz
samba-7fbe9b52532129b1b373ef48150a09f5a1d8ec6f.tar.xz
samba-7fbe9b52532129b1b373ef48150a09f5a1d8ec6f.zip
param: Rename variable used for lp_require_strong_key bRequireStrongKey
Signed-off-by: Andrew Bartlett <abartlet@samba.org> Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r--lib/param/param_functions.c2
-rw-r--r--lib/param/param_table.c2
-rw-r--r--source3/param/loadparm.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c
index a03446807e..c31e5c23db 100644
--- a/lib/param/param_functions.c
+++ b/lib/param/param_functions.c
@@ -207,7 +207,7 @@ FN_GLOBAL_BOOL(passwd_chat_debug, passwd_chat_debug)
FN_GLOBAL_BOOL(registry_shares, registry_shares)
FN_GLOBAL_BOOL(reject_md5_clients, reject_md5_clients)
FN_GLOBAL_BOOL(reject_md5_servers, reject_md5_servers)
-FN_GLOBAL_BOOL(require_strong_key, bRequireStrongKey)
+FN_GLOBAL_BOOL(require_strong_key, require_strong_key)
FN_GLOBAL_BOOL(reset_on_zero_vc, bResetOnZeroVC)
FN_GLOBAL_BOOL(rpc_big_endian, bRpcBigEndian)
FN_GLOBAL_BOOL(stat_cache, bStatCache)
diff --git a/lib/param/param_table.c b/lib/param/param_table.c
index 8d43b9c61e..83e6818976 100644
--- a/lib/param/param_table.c
+++ b/lib/param/param_table.c
@@ -4202,7 +4202,7 @@ static struct parm_struct parm_table[] = {
.label = "require strong key",
.type = P_BOOL,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(bRequireStrongKey),
+ .offset = GLOBAL_VAR(require_strong_key),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED,
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 90ebabb5d6..3b1144b816 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -833,7 +833,7 @@ static void init_globals(bool reinit_globals)
Globals.encrypted_passwords = true;
Globals.clientSchannel = Auto;
Globals.bWinbindSealedPipes = true;
- Globals.bRequireStrongKey = true;
+ Globals.require_strong_key = true;
Globals.serverSchannel = Auto;
Globals.bReadRaw = true;
Globals.bWriteRaw = true;