diff options
| author | Stefan Metzmacher <metze@samba.org> | 2013-10-17 18:39:56 +0200 |
|---|---|---|
| committer | Stefan Metzmacher <metze@samba.org> | 2014-01-07 12:47:04 +0100 |
| commit | b39ca3a2aefdd43a55b9cdd8fa5136254b283927 (patch) | |
| tree | a7f5aa6f682da691d60f0d3d9c8e8df3ef4a43f3 /lib/param | |
| parent | 99d8653d83aa2e2e3a0ea097ab7cb65d62d76daf (diff) | |
| download | samba-b39ca3a2aefdd43a55b9cdd8fa5136254b283927.tar.gz samba-b39ca3a2aefdd43a55b9cdd8fa5136254b283927.tar.xz samba-b39ca3a2aefdd43a55b9cdd8fa5136254b283927.zip | |
lib/param: add "neutralize nt4 emulation" option, defaulting to false
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'lib/param')
| -rw-r--r-- | lib/param/param_functions.c | 1 | ||||
| -rw-r--r-- | lib/param/param_table.c | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index c4071c9d33..2cb3300075 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -192,6 +192,7 @@ FN_GLOBAL_BOOL(log_writeable_files_on_exit, bLogWriteableFilesOnExit) FN_GLOBAL_BOOL(map_untrusted_to_domain, bMapUntrustedToDomain) FN_GLOBAL_BOOL(ms_add_printer_wizard, bMsAddPrinterWizard) FN_GLOBAL_BOOL(multicast_dns_register, bMulticastDnsRegister) +FN_GLOBAL_BOOL(neutralize_nt4_emulation, bNeutralizeNT4Emulation) FN_GLOBAL_BOOL(nis_home_map, bNISHomeMap) FN_GLOBAL_BOOL(nmbd_bind_explicit_broadcast, bNmbdBindExplicitBroadcast) FN_GLOBAL_BOOL(ntlm_auth, bNTLMAuth) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 10cf046b9d..282d804e8a 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -4180,6 +4180,15 @@ static struct parm_struct parm_table[] = { .enum_list = NULL, .flags = FLAG_ADVANCED, }, + { + .label = "neutralize nt4 emulation", + .type = P_BOOL, + .p_class = P_GLOBAL, + .offset = GLOBAL_VAR(bNeutralizeNT4Emulation), + .special = NULL, + .enum_list = NULL, + .flags = FLAG_ADVANCED, + }, {N_("DNS options"), P_SEP, P_SEPARATOR}, { |
