diff options
| author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:42 +1300 |
|---|---|---|
| committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:50 -0800 |
| commit | 2f8f2e0c022b8e49755d5a9c4eb30ed1b063ff90 (patch) | |
| tree | 507743b7246f2fdee81bc9e998b2a2be4d432e78 /lib/param | |
| parent | 91b212c179fb32420f7191fd7f4da11df55265d5 (diff) | |
| download | samba-2f8f2e0c022b8e49755d5a9c4eb30ed1b063ff90.tar.gz samba-2f8f2e0c022b8e49755d5a9c4eb30ed1b063ff90.tar.xz samba-2f8f2e0c022b8e49755d5a9c4eb30ed1b063ff90.zip | |
param: Rename variable used for lp_allow_nt4_crypto bAllowNT4Crypto
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/param')
| -rw-r--r-- | lib/param/param_functions.c | 2 | ||||
| -rw-r--r-- | lib/param/param_table.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index c5d986ffc4..874f6459b1 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -154,7 +154,7 @@ FN_LOCAL_PARM_BOOL(kernel_change_notify, kernel_change_notify) FN_LOCAL_BOOL(durable_handles, durable_handles) FN_GLOBAL_BOOL(allow_insecure_widelinks, allow_insecure_widelinks) -FN_GLOBAL_BOOL(allow_nt4_crypto, bAllowNT4Crypto) +FN_GLOBAL_BOOL(allow_nt4_crypto, allow_nt4_crypto) FN_GLOBAL_BOOL(allow_trusted_domains, bAllowTrustedDomains) FN_GLOBAL_BOOL(async_smb_echo_handler, bAsyncSMBEchoHandler) FN_GLOBAL_BOOL(bind_interfaces_only, bBindInterfacesOnly) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 155f982bdb..4247dadf5c 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -4320,7 +4320,7 @@ static struct parm_struct parm_table[] = { .label = "allow nt4 crypto", .type = P_BOOL, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bAllowNT4Crypto), + .offset = GLOBAL_VAR(allow_nt4_crypto), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, |
